geochrist Posted June 9, 2023 Share Posted June 9, 2023 Hi, I am using prestashop 8.0.4. When performing a search with the search bar the page that is displayed with the results contains a grid where every row has 4 products. Is there a way to change this to display 5 or 6 products? What files should be edited? Thank you Link to comment Share on other sites More sharing options...
geochrist Posted June 12, 2023 Author Share Posted June 12, 2023 Can someone please help? This is a question asked many times but with no answers. Link to comment Share on other sites More sharing options...
BonPresta Posted June 14, 2023 Share Posted June 14, 2023 Hello. Please clarify, are you using Prestashop classic theme? Link to comment Share on other sites More sharing options...
Med solver Posted June 21, 2023 Share Posted June 21, 2023 hi there, if you want to change the numbers of products per line on search page you can go to /themes/your-theme/templates/catalog/listing/search.tpl you will find this code : {include file='catalog/_partials/products.tpl' listing=$listing productClass="col-xs-6 col-xl-3"} for 4 products per line on desktop if you want to show 6 products per line replace the code above by : {include file='catalog/_partials/products.tpl' listing=$listing productClass="col-xs-6 col-xl-2"} if you want to show 3 products per line replace the code above by : {include file='catalog/_partials/products.tpl' listing=$listing productClass="col-xs-6 col-xl-4"} if you want to show 2 products per line replace the code above by : {include file='catalog/_partials/products.tpl' listing=$listing productClass="col-xs-6 col-xl-6"} 1 Link to comment Share on other sites More sharing options...
Stefan511 Posted May 19 Share Posted May 19 @Med solver great answer mate, thank you! I really needed this! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now