aprilholle
Forum Replies Created
-
Also experiencing this issue with 7.17.0 version.
<script>
__gaTracker(‘send’, { ‘hitType’: ‘pageview’, ‘page’: ‘about-artisan-colour/contact-artisan-colour/thanks/’, ‘title’: ‘Contact Us Form Thank You Confirmation Page’ });
</script>Forum: Plugins
In reply to: [Optima Express IDX] Updated to Worpdress 4.0 Now Listings not loadingI would not consider this resolved, as there still seems to be a conflict with Yoast’s Google Analytics plugin.
Forum: Plugins
In reply to: [Redirection] 410 (Gone) redirect – is it possible?It would be handy to add this to the dropdown selector…
Forum: Plugins
In reply to: [WP User Frontend - Reloaded] Oscar update small conflictHere are the details on proper usage of “has_shortcode”, looks like older versions didn’t need to specify where the shortcode would be, now you do.
https://codex.ww.wp.xz.cn/Function_Reference/has_shortcode
@wkreiser I’m also using Eprom for a website, here’s the fix you’ll need.
/themes/eprom_1_1_0/framework/scripts/scripts.php old line 118:
/* Contact form */ if (has_shortcode('contact_form')) { wp_localize_script('custom', 'ajax_action', array('ajaxurl' => admin_url('admin-ajax.php'), 'ajax_nonce' => wp_create_nonce('ajax-nonce'))); }Line 118 Fixed:
/* Contact form */ if (has_shortcode(<strong> $content, </strong>'contact_form')) { wp_localize_script('custom', 'ajax_action', array('ajaxurl' => admin_url('admin-ajax.php'), 'ajax_nonce' => wp_create_nonce('ajax-nonce'))); }Functioning fine now. 🙂