Answers for "prestashop show all products"

PHP
0

prestashop show all products in category

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

prestashop show all products in category

{if !empty($smarty.get.order)}
        {capture assign='ordering'}order={$smarty.get.order}&{/capture}
    {else}
        {assign var='ordering' value=''}
    {/if}

    {if !empty($smarty.get.resultsPerPage)}
        {assign var='results_per_page' value=$smarty.get.resultsPerPage}
    {else}
        {assign var='results_per_page' value=25}
    {/if}
Posted by: Guest on January-12-2021

Code answers related to "prestashop show all products"

Browse Popular Code Answers by Language