@prosite glad to hear ASE has been useful for you.
As to the issue you are facing, it’s probably because your custom filter has the default priority 10 and is overridden by ASE’s add_filter( ‘update_footer’, ‘asenha_footer_version_text’, 20 ) which has the priority of 20 (executed after your filter, and thus overrides it). Simply assign higher priority to your filter, e.g. add_filter(‘admin_footer_text’, ‘abcd’, 30) to override the one put in place by ASE. Hope that fixes it for you.
When you have a bit of time, please consider adding a quick review for ASE. Can simply be what you already wrote above: “I love your plugin! All this needed functionality in one place is very helpful and saves me from writing (pasting) a lot of custom code every time.” This will help others find ASE as they look for new plugins to install.
This worked. Thanks! Review on it’s way.
