Advertisement
lorro

WooCommerce - Set number of cross sells

May 21st, 2015
561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.   // set the number of cross sells on the cart page
  3.   // code goes in functions.php for your child theme
  4.   add_filter('woocommerce_cross_sells_total', 'set_cross_sells', 40);
  5.   function set_cross_sells() {
  6.     return 2;
  7.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement