• Resolved Arun G

    (@arunlapog)


    Hi, Is there a way to hide the new admin sticky bar from woocommerce admin pages? It hides the Add Media button on the product edit page, If we have a long content, we have to scroll the entire page to top to see/click the Add Media Button. Please give a solution.

    • This topic was modified 4 years, 4 months ago by Arun G.
    • This topic was modified 4 years, 4 months ago by Arun G.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Arun G

    (@arunlapog)

    I mean the bloat bar. its annoying!

    • This reply was modified 4 years, 4 months ago by Arun G.
    Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @arunlapog!

    Can you please send me a screenshot of the bloat bar you are referring to? You can use the free Snipboard.io tool to send me the screenshot, thanks.

    Cheers!

    Thread Starter Arun G

    (@arunlapog)

    Hi Rynald0s

    Thanks for your response. Sorry For my late reply.
    here is the screenshot https://snipboard.io/V9dNUs.jpg

    Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @arunlapog!

    You can try the following CSS code and see if that helps:

    .woocommerce-embed-page .woocommerce-layout__header {
        display: none;
    }

    This can be added to the “Additional CSS” section in your customizer.

    Cheers!

    Thread Starter Arun G

    (@arunlapog)

    Ok, Temporary fix. Thanks

    Thread Starter Arun G

    (@arunlapog)

    Hi @rynald0s!

    I tried adding your css to “Additional CSS”. But it doesn’t worked. So have added the following code thru functions.php. Now its perfect!

    add_action(‘admin_head’, ‘my_custom_styles’);
    function my_custom_styles() {
    echo ‘<style>
    .woocommerce-layout__header {
    position:static;
    }
    .woocommerce-embed-page #screen-meta, .woocommerce-embed-page #screen-meta-links{
    top:1px;
    }
    </style>’;
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Woocommerce Quick access bar problem’ is closed to new replies.