Forums

AG Custom Admin
Doesn't hide the "Fluency Admin" message.. (6 posts)

  1. erick_paper
    Member
    Posted 1 year ago #

    It does change the WordPress footer, but the stuff added by Fluency Admin remains.

    Any ideas?

    http://wordpress.org/extend/plugins/ag-custom-admin/

  2. argonius
    Member
    Plugin Author

    Posted 1 year ago #

    This is not supported by AG Custom Admin, because it is Fluency Admin specific problem, and not WordPress/AGCA related. However, you could fix this if you hard-code some values in plugin.php. So, open plugin.php file and add this line

    jQuery("#footer p:first").hide();

    after first line that starts like this

    jQuery(document).ready(function() {

    That should do the trick.

  3. erick_paper
    Member
    Posted 1 year ago #

    Thanks, but I notice that with AG, the admin area becomes slow. There's a pause when a page loads.

    That's unacceptable to me.

    Is there any page where I can put my own CSS for the admin area? I can then hide "#footer p:first".

    Thanks!

  4. argonius
    Member
    Plugin Author

    Posted 1 year ago #

    Hmm.. not sure what's that. You could try also to clear browser's cache before reloading page. Yes, you could use ag_style.css inside style folder to add custom styles. Add this style as a fix:

    #footer p:first-child{
    	display:none;
    }

    Otherways, the only option is to manualy remove footer content in Fluency plugin.

    Cheers

  5. erick_paper
    Member
    Posted 1 year ago #

    Thx so much!!! This works :)

    Do you know how to remove "You are using WordPress 3.2.1" in the Dashboard area in "Right Now" section?

  6. argonius
    Member
    Plugin Author

    Posted 1 year ago #

    You're welcome:)
    Try with this CSS fix

    #dashboard_right_now .versions #wp-version-message{
          display:none;
    }

    or just

    #wp-version-message{
          display:none;
    }

    Cheers

Topic Closed

This topic has been closed to new replies.

About this Plugin

About this Topic