Rai Ansar
Forum Replies Created
-
Forum: Reviews
In reply to: [Enhanced Autoload Manager] Finally one that really worksThank you so much @bobf000 , appreciate the kind words and support!
Forum: Plugins
In reply to: [Enhanced Autoload Manager] Items per pageMy plugin keeps record of which ones were enabled in another value, which is why it can help you enable those disabled by it but can’t help you enable the ones already disabled. I will work on a solution which would allow users to enable autoloads disabled prior to Enhanced Autoload Manager but on the other hand I want to keep it lightweight and fast, so it is going to be a tricky solution.;
Forum: Plugins
In reply to: [Enhanced Autoload Manager] Items per page@bobf000 on your query regarding the functionality of Lock/Unlock:
The plugin stores locked autoload values in a separate WordPress option (edal_locked_autoloads). When you lock
an autoload option, it saves both the option name and its current autoload value (‘yes’ or ‘no’).Automatic Restoration:
The plugin hooks into WordPress’s admin_init action, which runs on every admin page load. Each time:- It checks all locked options against their current database values
- If any locked option’s autoload value has been changed (e.g., by a plugin update or WordPress core), it
automatically restores it to the locked value - It clears the WordPress cache to ensure the change takes effect immediately Handling Uninstalled Plugins:
If a plugin is uninstalled and its options are removed from the database:
- The lock simply becomes inactive (no harm done)
- The locked entry remains in our list but won’t affect anything since the option no longer exists
- You can unlock it manually to clean up, or it will be ignored automatically Example:
If you lock _transient_timeout_xyz as ‘no’, and WordPress or a plugin update changes it back to ‘yes’,
Enhanced Autoload Manager will detect this on the next admin page load and automatically change it back to
‘no’ – keeping your optimization intact. The locks persist until you manually unlock them, giving you full control over which autoload values should be
protected from external changes.
Forum: Plugins
In reply to: [Enhanced Autoload Manager] Items per pageHello @bobf000 I have updated the plugin:
- No more pagination if you pick the option “ALL”
- Also added Lock/Unlock feature.
- Made a few UI improvements you will like.
Thank you for the support.
Forum: Plugins
In reply to: [Enhanced Autoload Manager] Items per pageThank you so much Bob for showing appreciation. I faced similar problems with all of the plugins which is why I came up with this one. I am glad you liked it. I will be pushing an update in a few hours to handle the pagination better and when in all users would be able to see infinite options rather than pagination which is hectic. Also I will introduce a locking feature which will allow users to lock any autoload value, which if replaced by any updates would be updated again by Enhanced Autoload Manager.