Home Forums Trusted Remove login and shopping cart icons from home page Reply To: Remove login and shopping cart icons from home page

#3556
Yazmin
Keymaster

Hello Lizna, in your case the above code doesn’t work for the /shop/ page as it is a special archive page created by WooCommerce and does not have a page ID in the body class.

so, to hide login & cart from /shop/ page (and any other special WooCommerce pages) you could use this:

.woocommerce-page .top-login,
.woocommerce-page .top-cart {
    display: none;
}

and as you are using your store only as a catalog, you could simply hide login & cart from everywhere like so:

.top-login,
.top-cart {
    display: none;
}

BTW I love the color scheme you are using with the theme!!