• Hello Team,
    The ‘Webpushr Preview’ button that resides in the top bar of Gutenberg editor is taking unnecessary space and pushing important editing controls into the overflow. As it is a pretty useless function and negatively effects my writing productivity, I must remove it.
    I couldn’t find any option in the settings, although I noted that your team stated they would address this in an update several years ago.
    Rather than effecting a manual coded fix, I would like your team to address this issue (as you stated you would). I am sure that I am not alone in this frustration.

Viewing 1 replies (of 1 total)
  • trek7k

    (@trek7k)

    The button is def. annoying and useless. Sounds like you don’t want to do any manual coding, and that’s fair. If you change your mind, and for others looking for a solution, you can add this to functions.php in your theme. Here’s the code.

    add_action('admin_head', 'my_custom_admin_style');
    function my_custom_admin_style() {
    echo '<style>
    div#webpushr_13fw3_switch-mode {
    display: none;
    }
    </style>';
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.