Correct, I’m using it for categories, well, it doesn’t state that in the setting, seems like an oversight to not mention that in the setting. Is there a way to override it defaulting to the Shop Options?
I’m looking at content-product_cat.php is that the correct file?
There is a loop:
// Store column count for displaying the grid
if ( empty( $woocommerce_loop[‘columns’] ) ) {
$product_display_columns = $sf_options[‘product_display_columns’];
// COLUMNS GET VARIABLE
if (isset($_GET[‘product_columns’])) {
$product_display_columns = $_GET[‘product_columns’];
}
$woocommerce_loop[‘columns’] = apply_filters( ‘loop_shop_columns’, $product_display_columns );
}