dannyvince
Forum Replies Created
-
This may not be the solution for everyone, but I tracked it down to an incompatibility with using a mailchimp popup: https://blog.mailchimp.com/fresh-new-pop-up-forms-to-grow-your-list/
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Sitemaps missing pagesI have tracked down the source of why my pages & post weren’t working, it was a issue with the WordPress HTTPS plugin as my site has recently got SSL, the “Force SSL Exclusively” option in it pages and posts them from the sitemap.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Sitemaps missing pagesI’ve temporarily reverted to version 3 which works fine: https://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Sitemaps missing pagesI’ve got the same issue as this, it’s just stopped showing 99% of statis pages and all the post – any ideas and what to do?
Forum: Plugins
In reply to: [Analyticator] How to set site speed sample rate in analytics.jsHas anyone got this fixed, i’m having the same issue, neither field (before or after tracker initialisation) works… I know it should work by default (the plugin blurb says: Support site speed tracking)… but sitespeed just isn’t showing in analytics?
Forum: Plugins
In reply to: [Contact Form 7] SSL cert breakingI got around this exact same issue by taking the ajax-loader.gif from the CF& plugin folder uploading it into media directory then adding a custom function via this plugin https://www.ads-software.com/plugins/functionality/ (or indeed you could add it directly into to your functions.php or child functions.php) depending on your template setup. Change the URL path to your own and et voilà!
/* Custom ajax loader for CF7 so SSL cert doesn't break */ add_filter('wpcf7_ajax_loader', 'my_wpcf7_ajax_loader'); function my_wpcf7_ajax_loader () { return ('https://www.YOURSITE.com/wp-content/uploads/YEAR/MONTH/ajax-loader.gif')'; }