Hello,
Try to use the following CSS code in order to make WooCommerce content area full width. You can add CSS code in Customize → Additional CSS section.
.woocommerce #primary {
width: 100%;
}
Then you can use WooSidebars plugin to remove sidebar widgets on all WooCommerce pages. Here is WooSidebars plugin documentation:
https://docs.woocommerce.com/document/woosidebars-2/
[ Signature deleted ]
Hi there,
Please try this CSS code below. You can add the code in Customize > Additional CSS.
.woocommerce #primary {
width: 100%;
}
.woocommerce #secondary {
display: none;
}
@arhakim, your code will hide widgets, not remove.
Thread Starter
tjobbe
(@tjobbe)
I do know CSS, but I cannot find the template file which controls the shops pages.
I don’t know enough about woocommerce templates, themes, or child themes to be confident enough to start messing about with code.
Hello @tjobbe,
Did you try to follow the instructions that I posted above?
[ Signature deleted ]
Thread Starter
tjobbe
(@tjobbe)
@romanbon whoops, didn’t see that first reply, I only saw arhakim’s. i’ll look into it now. thanks
Thread Starter
tjobbe
(@tjobbe)
@romanbon that worked. Didn’t use the plugin, just went into Appearance > Widgets,
Thanks!