how to display 3 products in a row on mobile
-
I trying to display 3 products in a row on mobile device, what i wrote below is only for 2 products in a row no matter each product only taking with 30% ,
products are not displayed in line , after 2 products in a row, the 3rd product goes to next row.I have screen shot as https://ibb.co/PcBML4T
for css, i have
@media screen and (max-width: 768px) {
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
width:30% !important;
padding: 0px !important;
margin: 0px !important;
float: left !important;}
}and function.php
/**
* Change number or products per row to 3
*/
add_filter(‘loop_shop_columns’, ‘loop_columns’, 999);
if (!function_exists(‘loop_columns’)) {
function loop_columns() {
return 3; // 3 products per row
}
}
- The topic ‘how to display 3 products in a row on mobile’ is closed to new replies.