prestashop get all products

Solutions on MaxInterview for prestashop get all products by the best coders in the world

showing results for - "prestashop get all products"
Robin
15 Sep 2016
1$all_products=Product::getProducts($id_lang, $start, $limit, $order_by, $order_way, $id_category = false, $only_active = false, Context $context = null);
Claudio
31 Nov 2019
1<label style="float:left;margin-right: 15px" class="form-control-label hidden-sm-down sort-label">{l s='Products per page:'}</label>
2<div style="float:left;" class="sort-select dropdown js-dropdown">
3    <a class="custom-select select-title" rel="nofollow" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
4        {$results_per_page}
5    </a>
6    <div class="dropdown-menu">
7        <a rel="nofollow" href="?{$ordering}resultsPerPage=25" class="dropdown-item js-search-link">
8            25
9        </a>
10        <a rel="nofollow" href="?{$ordering}resultsPerPage=50" class="dropdown-item js-search-link">
11            50
12        </a>
13        <a rel="nofollow" href="?{$ordering}resultsPerPage=75" class="dropdown-item js-search-link">
14            75
15        </a>
16        <a rel="nofollow" href="?{$ordering}resultsPerPage=100" class="dropdown-item js-search-link">
17            100
18        </a>
19    </div>
20</div>