Lets say you want to show 5 accessories in one row. Then use this shortcode:
function filter_woocommerce_upsell_display_args( $array ) { $array = 5; return $array; }; // add the filter add_filter( 'woocommerce_upsell_display_args', 'filter_woocommerce_upsell_display_args', 10, 1 );
Thanks for your excellent plugin. I followed the instructions for “Changing the Position” successfully but couldn’t make this work. Where should i place this code ? Regards, John
Hi there,
you need to place this into your functions.php of your child theme.
Kindly look at the link i provided. I have changed position of products successfully.
But, not able to change view of products as per above shortcode.
Kindly help in this matter.