Guest User

Untitled

a guest
Nov 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_filter( 'woocommerce_upsells_total', 'wc_ninja_edit_upsells_total', 10 );
  2. function wc_ninja_edit_upsells_total( $limit ) {
  3. return 8;
  4. }
  5.  
  6. add_filter( 'woocommerce_upsells_columns', 'wc_ninja_edit_upsells_columns', 10 );
  7. function wc_ninja_edit_upsells_columns( $columns ) {
  8. return 4;
  9. }
Add Comment
Please, Sign In to add comment