Viewing 5 replies - 1 through 5 (of 5 total)
  • 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.

    Thread Starter erick_paper

    (@erick_paper)

    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!

    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

    Thread Starter erick_paper

    (@erick_paper)

    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?

    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

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: AG Custom Admin] Doesn't hide the "Fluency Admin" message..’ is closed to new replies.