setting cols not working after updating to 2.2.3 from 2.1.8
-
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)
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.