• Shaun Roselt

    (@shaunroseltgmailcom)


    I like this plugin a lot. Sadly it doesn’t show on mobile. I can only see it when opening WordPress from desktop.

Viewing 1 replies (of 1 total)
  • Plugin Author alpipego

    (@alpipego)

    Hi Shaun,
    thank you for making me aware of this. The #wpfooter does not show on mobile. I don’t want to override core CSS in this plugin, but you can do it yourself by adding the following to a mu-plugin, your theme’s functions.php, etc.:

    
    add_action('admin_enqueue_scripts', function () {
        wp_add_inline_style('common', '@media screen and (max-width: 782px){#wpfooter {display: block;}}');
        wp_add_inline_style('admin-menu', '@media only screen and (max-width: 960px){.auto-fold #wpfooter{margin-left: 0px;}}');
    });
    

    I’ve also added this info to the FAQ section.

Viewing 1 replies (of 1 total)
  • The topic ‘Doesn’t show on mobile’ is closed to new replies.