hbwarper
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Submit Time 15+ secondsTry installing WP Mail SMTP
We had this same issue and this plugin reduced the send time to <1 second.Done, thanks!
Hi @jhorowitz
Yes, I’d rather not post a very log-log file here but cannot find a PM option here on ww.wp.xz.cn – feeling a bit daft.. just cannot see one.Forum: Plugins
In reply to: [Shortcode in Menus] PHP NoticesReplacing :
if ( 'gs_sim' !== $item->object ) {
with:
if (!isset($item->object) || $item->object !== 'gs_sim'){and replacing
if ('FULL HTML OUTPUT' === $item->post_title ) {
with
if (isset($item->post_title) && 'FULL HTML OUTPUT' === $item->post_title ) {In the file: wp-content/plugins/shortcode-in-menus/includes/class-shortcode-in-menus.php
Stops this plugin from filling the log with thousands of error lines per day.If you are using it in a multisite environment, see my new comment “Plugin Missing from WC admin pages – FIXED”