RobF28
Forum Replies Created
-
Forum: Plugins
In reply to: [Login Logo] Doesn’t work anymore with WP 6.7Same for me, but I guess you’ve got this now 🙂
Forum: Plugins
In reply to: [WP Ultimate Post Grid] PHP 8.0+Thank you.
Good response @mplusb, I guess sometimes these bugs slip past QC, hopefully the OP’s issue will get resolved soon. For what it’s worth, I have used the free version on three sites now, and I have always had no problems with it, it just works as I expect it too. Good luck with the bug fixing.
Update:
To stop ALL (core, plugin, minor, security or otherwise) auto-updates, it’s better to add this line to your wp-config.php file, as WP codex recommends that one does not use add_filter calls in the wp-config.php file…
define( ‘AUTOMATIC_UPDATER_DISABLED’, true );
Regards.
Hi All,
Yes, I had these lines added to one of my wp-config.php files in a WP install too.
Thereafter I had a automatic (plugin) update overwrite some WooCommerce files, and I lost some of my modifications to the plugin. (I should have used a child theme – I know!).
So I’ve changed them too…
add_filter( ‘auto_update_plugin’, ‘__return_false’ );
add_filter( ‘auto_update_theme’, ‘__return_false’ );All ok now.
I understand that my host (HostGator) added these filters during their automatic installation of WordPress in the first place.
Hope this helps.