Archived topic
Woocommerce - Screen Design in Page
3 replies · Started by ZEMDER on February 19, 2018
Hi Tom,
I have installed 'Woocommerce' in localhost before to install it in production, and I'm getting issues with design of pages created by default of the store.
With my GP Premium version, I have customized the page 'Store' setting these options:
1. Sidebars : Content (no sidebars)
2. Footer Widgets: 0 widgets
3. Disable Elements: Content Title
But nothing happen on the page, I mean, the page is being shown with sidebars, 3 columns of widgets in the footer, and the title too.
Is there some additional step to get this customize?
Thanks,
Hi there,
I would assume Store is an archive page? If so WordPress ignores metabox values on index pages (blog, archive, shop).
Sidebar layout and page title are here: https://docs.generatepress.com/article/woocommerce-overview/#shop
Then you can hide footer widgets and content title with this CSS:
.post-type-archive-product .footer-widgets {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Hi Leo,
Thanks a lot, works fine now with your suggestion.
No problem :)