Skip to content

Instantly share code, notes, and snippets.

@MinaPansuriya
Last active October 10, 2016 11:10
Show Gist options
  • Save MinaPansuriya/2d7dfc3379248bb1d4db2af4deb9910b to your computer and use it in GitHub Desktop.
Save MinaPansuriya/2d7dfc3379248bb1d4db2af4deb9910b to your computer and use it in GitHub Desktop.
/**
* @Title: Change number of products per row on Shop/Category Page
* @Author: Mina Pansuriya
* @Website: http://minapansuriya.com
*/
add_filter( ‘loop_shop_columns’, ‘pbs_woo_modify_no_of_columns_on_shop_page’ );
function pbs_woo_modify_no_of_columns_on_shop_page( $no_of_columns ) {
$no_of_columns = 3;
return $no_of_columns;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment