Hello, I have both blog and woocommerce under the Generatepress theme and want to hide primary menu and/or footer in the blog but not on the shop page. I used:
.blog .main-navigation,
.archive .main-navigation {
display: none;
}
.blog .footer-widgets,
.archive .footer-widgets {
display: none;
}
The thing is that Woocommerce is probably blog based and that causes the CSS code to hide Menu and Footer both in the blog and the shop. Is there a way to hide menu and footer in blog only but not in the shop at the same time?