Change the Cross sell position to after cart
Instruction to move the cross-sell products section to a position after the cart.
add_action('advanced_woo_discount_rules_before_loaded', function (){
if(class_exists('\WDRPro\App\Rules\BuyXGetY')){
remove_all_filters( 'woocommerce_cart_collaterals', 9 );
add_action( 'woocommerce_after_cart', array('\WDRPro\App\Rules\BuyXGetY', 'loadCrossSellDisplay'), 9 );
}
});