Archived topic
Woocomerce product page elements not showing on Chrome/Edge
5 replies · Started by Daniel on January 10, 2023
Hi,
When viewed in chrome/edge, the woocommerce product page does not show the short description/price/add to cart. It just shows the picture. When I disable the woocommerce element in Generatepress, it shows up.
When viewed in Firefox, the product page shows everything.
I have disabled all plugins and just have Generatepress and woocommerce enabled.
Thanks.
Hi there,
if you go to Customizer > LAYOUT > Woocommerce, and scroll down to the Single Product, what is the Product Image Area Width set to ? Can you make it 50%. Does the other content then appear ?
Thanks for the fast response David. Right now it is set at 100%. If I make the image lower than 95% the content does appear. Is there a workaround to make the image the full width?
Odd, not sure why thats doing that, ill take a look at the theme code.
Try adding this to correct that:
.woocommerce div.product > * {
float: none !important;
width: 100%;
}
That worked, thanks David.
Glad to hear that!