Move display of upselling products to the bottom of the shopping cart page
-
Dear support team,
I want to move the display of upselling products to the shopping cart page. So that the table for totals can be hidden and the upselling products are under the shopping cart.
The following changes have been made in Style.css:
// Hide totals table and upselling products
.cart-collaterals {
display: none !important;
}The following changes have been made in functions.php:
// Remove Cross Sells From Default Position.
remove_action( ‘woocommerce_cart_collaterals’, ‘woocommerce_cross_sell_display’ );// Add them back UNDER the Cart Table.
add_action( ‘woocommerce_after_cart_table’, ‘woocommerce_cross_sell_display’ );Unfortunately there are currently no upselling products displayed on the shopping cart page. Not even if I remove the above code.
Currently our website is still under development but I’m very happy about your support.
- This topic was modified 5 years, 4 months ago by .
- This topic was modified 5 years, 4 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘Move display of upselling products to the bottom of the shopping cart page’ is closed to new replies.