• Resolved prosite

    (@prosite)


    Firstly: 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.

    I use the add_filter(‘admin_footer_text’, “abcd”) to add extra text to the footer with our contact information. But as soon as I activate your plugin, the footer is gone. Even without activating any of the options. Is there a workaround? Does the plugin override this filter in functions.php?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Bowo

    (@qriouslad)

    @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.

    Thread Starter prosite

    (@prosite)

    This worked. Thanks! Review on it’s way.

    Plugin Author Bowo

    (@qriouslad)

    @prosite glad to hear that and thanks for the nice review!

    Plugin Author Bowo

    (@qriouslad)

    @prosite I’m revisiting ASE’s old(er) support threads to appreciate the feedback you’ve given in improving ASE with a sneak peak of, and discount code you can get for the soon-to-be-released Pro version of ASE.

    If you’re interested, please contact me at?https://bowo.io?so I can send you the link to the website and the discount code.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Plugine breaks custom footer (admin_footer_text)’ is closed to new replies.