• via admin-panel – theme options – woocommerce option
    change “Products Per Row”, in preview all good, but on the site not work

Viewing 3 replies - 1 through 3 (of 3 total)
  • In many themes there is an option under customise>woocommerce to change the number of products and columns per page. Not in Best Commerce.
    These settings are hard coded in >theme>includes>support>woocommerce.php under the heading of – function default_options($input)
    Its not pretty…actually its very ugly, but altering these numbers will get you the result you want.
    If the developers were to include these under “customise” rather than having them hard coded, Best Commerce would be a much better theme

    Thread Starter ekabinov

    (@ekabinov)

    function default_options( $input ) {
    $input[‘woo_page_layout’] = ‘right-sidebar’;
    $input[‘woo_product_per_page’] = 16;
    $input[‘woo_product_per_row’] = 4;
    $input[‘woo_sorting_dropdown’] = true;
    return $input;
    }

    try to change 16 per_page, 4 row
    but on the site 15 per_page, 2 row
    https://vic-shop.ru/

    Thread Starter ekabinov

    (@ekabinov)

    after disable caching plugins all works!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can’t change ProductRow’ is closed to new replies.