Reputation: 251
what is the correct way to disable quick view in product in prestashop 1.6
{if isset($quick_view) && $quick_view}
<a class="quick-view" href="{$product.link|escape:'html':'UTF-8'}" rel="{$product.link|escape:'html':'UTF-8'}" title="{l s='Quick view'}">
<span>{l s='Quick view'}</span>
</a>
{/if}
isset($quick_view) where is this set?
Upvotes: 9
Views: 16119
Reputation: 272
In Prestashop 1.7.x, you have to go to the theme : /templates/catalog/_partials/miniatures/product.tpl
and remove the code quickview
Upvotes: 0
Reputation: 3106
It is in PrestaShop back-office -> Modules
-> Modules
-> Theme configurator
-> Display quick view window on homepage and category pages
Upvotes: 16