• Hello. I need to add more rows in the product catalogs, I can only add 1 to 8 rows, and I would like to add 20 rows. it’s possible?

Viewing 1 replies (of 1 total)
  • Hi there, try to add this code snippet to your child theme functions.php

    if ( !function_exists( 'yith_proteo_woocommerce_max_rows' ) ) {
    add_action( 'after_setup_theme', 'yith_proteo_woocommerce_max_rows' );
    	function yith_proteo_woocommerce_max_rows() {
    		add_theme_support( 'woocommerce', array(
    			'product_grid' => array(
    				'default_rows' => 3,
    				'min_rows'     => 2,
    				'max_rows'     => 20,
    			),
    		) );
    	}
    }
Viewing 1 replies (of 1 total)
  • The topic ‘woocomerce products’ is closed to new replies.