How to increase product on each category page
-
Hi ,
I want to increase the product on each category currently its showing 9 product i want to increase the product on first page.
Second question is when i try to upload product image its not showing the updated image on frontend. Even i try to clear view and cache.
-
Hi,
While adding the products from admin panel you should select the category and also you should select Yes at Visible Individually field
- For second question you should run the command php artisan storage:link
Please find below are the images for reference:
-
@Keerthi said in How to increase product on each category page:
My question is on frontend. Product is already showing on frontend its like 50 product but under each category its showing only 9 product i want to show minimum 12 product on each page of pagination on frontend. -
If you see category page , then you will found that this is coming from toolbar.blade.php page, so first of all you need to override this view file.
In this view file, you can see a helper function call toolbarHelper, which is responsible to show quantity, so you can create your helper and can used quantity according to your requirement.
For images Problem, you can follow this answer - https://forums.bagisto.com/topic/188/broken-image-logo-in-bagisto-with-causes-and-solutions/2
Thanks