• Resolved bpong

    (@bpong)


    I wish to change the order of upsells in my child theme from random to the same order as entered.

    I’ve tried adding following in my child themes functions.php file, but without success.

    add_filter( 'woocommerce_upsell_display','chld_thm_cfg_upsell_order' );
    function chld_thm_cfg_upsell_order() {
        $args = array(
    		'orderby' => 'menu_order',
    		'order' => 'desc',
        );
       return $args;
    }

    I found an old topic regarding the same, but no solution was shared.
    https://www.ads-software.com/support/topic/woocommerce-related-upsell-products-order/

    I’ll be very grateful if somebody can help me out ??

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Woocommerce change order of upsells’ is closed to new replies.