Hello,
I’d like to show a sidebar on the right side on my productpages with other shopping cats. The sidebar now floats at the left side, below the product picture, below the fold. Can you tell me how to change this. See link.
Thanks in advance!
Hi Luc!
Try this out, https://kriesi.at/support/topic/single-product-page-is-strange-sidebar-appears-under-product/#post-451940.
Cheers!
Elliott
This works even without replacing stuff in the config fil of Woocommerce. But what do I need to change to get the sidebar on the right?
Thanks!
Hey!
Try changing this line.
if( is_single() )$layout = "sidebar_left";
To this.
if( is_single() )$layout = "sidebar_right";
And change the CSS to this.
.single-product .product {
width: 68%;
margin-right: 4%;
clear: none;
float: left;
}
If that’s not working then send us a WordPress login and we’ll take a look.
Cheers!
Elliott