Answers for "prestashop make all products always available"

PHP
0

prestashop get all products

$all_products=Product::getProducts($id_lang, $start, $limit, $order_by, $order_way, $id_category = false, $only_active = false, Context $context = null);
Posted by: Guest on November-11-2020
0

prestashop show all products in category

if ($resultsPerPage <= 0 || $resultsPerPage > 36) {
    $resultsPerPage = Configuration::get('PS_PRODUCTS_PER_PAGE');
}
Posted by: Guest on January-12-2021

Code answers related to "prestashop make all products always available"

Browse Popular Code Answers by Language