2.4k questions

2.4k answers

99.5k users

Categories

0 votes
87 views

How does WooCommerce work with WordPress themes?
in WordPress by (95.8k points)

1 Answer

0 votes

I agree with the people already spoken. I just want to state the answer to the question:

when a theme is proper for WooCommerce ?

when includes

  • function mytheme_add_woocommerce_support() { 
  • add_theme_support( 'woocommerce' ); 
  • } 
  •  
  • add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' ); 
  •  
  • and more just read  

    WooCommerce Theme Developer Handbook
    WooCommerce looks great with all WordPress themes as of version 3.3, even if they are not WooCommerce-specific themes and do not formally declare support. Templates render inside the content, and this keeps everything looking natural on your site. Non-WooCommerce themes, by default, also include: Zoom feature enabled – ability to zoom in/out on a product […]
    by (95.8k points)
    ...