Viewing 1 replies (of 1 total)
  • Hi @onelove108108

    There is way to set specific product ids.
    Kindly place this in your functions php & replace the ids 5,1000,2,341 with your own.

    //Filter to change side cart upsells
                    function xoo_cu_wsc_sp_filter($args){
                            $args['suggested_products'] = array(5,1000,2,341);
                            return $args;
                    }   
                    add_filter('xoo_wsc_suggested_product_args','xoo_cu_wsc_sp_filter');
    
Viewing 1 replies (of 1 total)
  • The topic ‘Awesome! Is there a way to to set a specific featured/upsell product in side car’ is closed to new replies.