Archived topic
Woocommerce sidebar
1 reply · Started by Cristina Morbidoni on December 10, 2017
Hi. I'm using GP Premium + Elementor Pro and Woocommerce.
1) No way to add a new sidebar for Woocommerce products? I was sure it was possible as Woocommerce is integrated in the theme, so it's very odd. I need at least this sidebar, but probably will need another too. Could you tell me if you are going to add this option?
2) I'm creating the product page and the layout is a little messy see here:
- there's a search icon between the product image and the description;
- the products gallery under the main product image is too near to the image;
- the tabs titles are centered aligned instead of left alignment.
Thank you for your help.
Hi there,
1) Are you looking for different sidebars on different pages? If so you need a plugin like this: https://en-ca.wordpress.org/plugins/content-aware-sidebars/
2)
- That's the zoom in icon added by WooCommerce, not GP. You can try this CSS to hide:
a.woocommerce-product-gallery__trigger {
display: none;
}
- Try this CSS:
.woocommerce div.product div.images .flex-control-thumbs {
margin-top: 20px;
}
- Try this CSS:
.woocommerce div.product .woocommerce-tabs ul.tabs {
text-align: center;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/