1function mytheme_add_woocommerce_support() {
2 add_theme_support( 'woocommerce' );
3}
4add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
5
1function mytheme_add_woocommerce_support() {
2 add_theme_support( 'woocommerce', array(
3 'thumbnail_image_width' => 150,
4 'single_image_width' => 300,
5
6 'product_grid' => array(
7 'default_rows' => 3,
8 'min_rows' => 2,
9 'max_rows' => 8,
10 'default_columns' => 4,
11 'min_columns' => 2,
12 'max_columns' => 5,
13 ),
14 ) );
15}
16add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
17