hi,Piotr Kunicki,I can not find how to control the column's number within Category Page (display after click the shop menu at homepage) , default is 3 , I search all area of widget and can not find,please giude me ,thanks
Junior Boarder
GK User
Tue Jan 14, 2014 12:30 pm
Hi,
It's from WooCommerce, so you can't find this option in widget area. You have to edit inStyle/gavern/wc-funcitons.php file and edit this fragment:
// Change number or products per row to 3 add_filter('loop_shop_columns', 'loop_columns'); if (!function_exists('loop_columns')) { function loop_columns() { return 3; // 3 products per row } }