Home Forums Basel support forum Sidebars Reply To: Sidebars

#1549

Artem Temos
Keymaster

Yes, you can try this one for columns trick

add_action('wp', 'basel_tag_columns_filter', 100);

function basel_tag_columns_filter() {
	if( is_product_tag() ) {
		global $basel_options;
		$basel_options['products_columns'] = 3; // your columns number
	}
}