How to use my template for Woocommerce?
-
I have a theme that is old and does not support Woocommerce. However it seems it is working fine. The /shop/ page has a sidebar. It has the default template. I want to change it to a fullwidth template, but it doesn’t allow me to change the template for this page.
I added:
function mytheme_add_woocommerce_support() { add_theme_support( 'woocommerce' ); } add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
And now It is completely unstyled. Now the templates are not being “read” no matter what template I use for the Shop page.
How can I make ALL the shop page use the “fullwidth” template? I just need to remove my sidebar. All the rest is fine.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to use my template for Woocommerce?’ is closed to new replies.