• Anonymous User 6443559

    (@anonymized-6443559)


    I installed and activated Fluency Admin 3.2 which is supposed to support WP 3.2. However upon activation not only does it not change the look of my wp-admin, I cannot access any sub menus. For example I can click on the settings menu but not and sub menus of Settings. I tried both on IE and Chrome.

    Manually going to https://localhost/wordpress/wp-admin/options-general.php?page=fluency-options and turning off the hover menus fixes the sub menu issue, but it still displays just like the regualr WP Admin.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Wil

    (@gravitationalfx)

    I have the same issue.

    Wil

    (@gravitationalfx)

    Custom logo (top of menu)option doesn’t work either.

    Displays an empty box.

    The issue is caused by the way windows paths are made up. You can fix it by opening /wp-content/plugins/fluency-admin/css/load-styles.php and on line 12 change the code from:

    /** Set ABSPATH for execution */
    $abspath = dirname(dirname(__FILE__)) . '/';
    define( 'THISABSPATH' ,substr($abspath,strpos($abspath,'wp-content/')));
    define( 'ABSPATH' ,substr($abspath,0,strpos($abspath,'/wp-content/')) . '/');

    To:

    /** Set ABSPATH for execution */
    $abspath = str_replace('\\','/',dirname(dirname(__FILE__))) . '/';
    define( 'THISABSPATH' ,substr($abspath,strpos($abspath,'wp-content/')));
    define( 'ABSPATH' ,substr($abspath,0,strpos($abspath,'/wp-content/')) . '/');

    This will change the backward slashes in the file path to forward slashes, so the /wp-content/ substring will work again.

    Thanks, christiaanderidder, that works.

    Thank you christiaanderidder – a great time-saving plugin.

    Just a small improvement, could the $abspath value be pulled from WordPress, as my wp-content has a prefix.

    It was nothing a manual tweak couldn’t fix, but hardcoding the value had me stumped for a few minutes!

    Cheers.

    @supersonic This plugin is not made by me, I just noticed this small bug. If you want those features implemented you should contact the developer.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Fluency Admin] Activating fulency admin 3.2 breaks admin menus’ is closed to new replies.