Up-sells order
-
Hello!
As I know woocommerse is sorting up-sells in random order.
And to sort it by price you need to add this code in your function.phpfunction filter_woocommerce_upsells_orderby( $orderby ) { return 'price'; }; add_filter( 'woocommerce_upsells_orderby', 'filter_woocommerce_upsells_orderby', 10, 1 );
It worked for me.
But I couldn`t figure out how to reverse order of up-sells.
This code sorting out products from high to low price, and I need the opposite.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Up-sells order’ is closed to new replies.