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.