Column issue (not solved with other threads)
-
Hi,
I have tried all the options described in other threads about columns, but none of them did help unfortunately.
Before using this plugin, I add custom code in functions.php to have 6 columns in the related products:
add_filter( 'woocommerce_output_related_products_args', function( $args ) { $args = wp_parse_args( array( 'posts_per_page' => 50, 'columns' => 6 ), $args ); return $args; }, 999); add_filter( 'woocommerce_product_related_posts_relate_by_tag', function() { return false; });
After adding the plugin, this does not work anymore. Can you help me out? Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Column issue (not solved with other threads)’ is closed to new replies.