-
Hello everyone and thank you for coming to this discussion. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello, Customizer settings won't work, because Bootstrap's grid is used instead of WooCommerce cols. You have to override loop template as described here https://woocommerce.com/document/template-structure/ in your child.
Does this help? |
Beta Was this translation helpful? Give feedback.
Hello,
Customizer settings won't work, because Bootstrap's grid is used instead of WooCommerce cols. You have to override loop template as described here https://woocommerce.com/document/template-structure/ in your child.
woocommerce/content-product.php
https://github.com/bootscore/bootscore/blob/main/woocommerce/content-product.php from main-theme to your child using the same folder structure.col-md-6 col-lg-4 col-xxl-3
in line29
tocol-6 col-lg-4 col-xxl-2
. Now you have 2 col mobile, 3 cols lg and 6 cols on xxl screens. Check https://getbootstrap.com/docs/5.3/layout/grid/ for more options about the grid.Does this help?