• Resolved Stephen S

    (@ssuess)


    I am using storefront with a child theme that sets the number of columns based on the product term. After updating to 2.2.3 from 2.1.8, this has stopped working:

    // Override theme default specification for product # per row
    function loop_columns() {
    global $wp_query;
    if ($wp_query->get_queried_object()->term_id == '231') {
    return 3; // 4 products per row
    } else {
    return 4;
    }
    }
    add_filter('loop_shop_columns', 'loop_columns', 999);

    I am getting 3 col no matter what I do, even if I remove the code above or change all returns to 5 or 6 or whatever, the theme is stuck at 3 col. I will revert to 2.1.8 but if anyone has a fix I would love to hear it. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Stephen S

    (@ssuess)

    one thing to add: I notice that the newer version of the theme was adding a div called “columns-3” whereas the older version did not have this. I have traced it to a new function that did not exist previously (storefront_product_columns_wrapper). Is there some new way that one should set columns with this version of the theme?

    Thread Starter Stephen S

    (@ssuess)

    ugh, I finally found the answer, wish it had been more obvious or in the release notes somewhere:

    I had to change loop_shop_columns in my filter to storefront_loop_columns

    Hope this helps someone else.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘setting cols not working after updating to 2.2.3 from 2.1.8’ is closed to new replies.