• Resolved bodd54

    (@bodd54)


    Hi,
    I wonder if any other Hummingbird users have come across this problem, I have narrowed it down to hummingbird and cerber and plugins.
    The login admin page is devoid of any styling and the form is plain boxes located at the top left of the page, however when you click login it takes me to the dashboard but when used on localhost the dasboard is all broken and only lists a series of links with no styling.
    The cause – Hummingbird and cerber plugins activated and the humming bird asset optimisation activated.
    If I deactivate cerber only everything works fine.
    If I activate cerber then deactivate hummingbird asset optimisation(the hummingbird plugin is still activated) the login page is fine but if I reactivate hummingbird asset optimisation the login page breaks.
    There is obviously some conflict going on but I am not clever enough to figure it out.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @bodd54

    First of all, sorry for the delay here.

    I was able to replicate the issue, and we are going to report to our developers.

    I’m afraid we can’t give an estimated time to release a fixed version, but a temporary solution is disabling the assets optmization on the login page using a custom function:

    <?php
    
    add_action( 'login_head', function(){
    add_filter( 'wp_hummingbird_is_active_module_minify', '__return_false', 99 );
    }, 0 );

    You can add the code using a mu-plugin, if you are not familiar with mu-plugins, you will find a guide on:
    https://premium.wpmudev.org/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    Let us know if the code worked for you.
    Best Regards
    Patrick Freitas

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @bodd54

    I hope you are doing well.

    We haven’t heard from you in a while, I’ll mark this thread as resolved.

    However, feel free to let us know if you have any additional question or problem.

    Best Regards
    Patrick Freitas

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hummingbird and cerber plugin conflict’ is closed to new replies.