Advertisement
jamiemarsland

Change default number of columns in Canvas WooCommerce

Jun 18th, 2013
1,458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. add_action (‘init’, ‘change_columns’);
  2. function change_columns() {
  3. add_filter( ‘loop_shop_columns’, ‘custom_loop_columns’ );
  4.  
  5. function custom_loop_columns() {
  6. return 3;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement