jimprestashop Posted January 1, 2017 Share Posted January 1, 2017 Bonjour à toutes et à tous et bonne année 2017, Je souhaite supprimer le bouton ajouter au panier sur les premières pages de mes produits. Ce bouton ma l'ait d'aucune utilité puisqu'il faut cliquer sur "détail" pour accéder aux quantités et à un second bouton identique. Merci pour votre aide ! Link to comment Share on other sites More sharing options...
Eolia Posted January 1, 2017 Share Posted January 1, 2017 Il faut enlever la balise correspondante dans le product-list.tpl de votre thème. Si vos produits ont des déclinaisons, une option en BO permet de supprimer le bouton automatiquement pour ceux-ci (et éviter l'ajout au panier sans avoir choisi) Link to comment Share on other sites More sharing options...
jimprestashop Posted January 1, 2017 Author Share Posted January 1, 2017 Merci Eolia pour votre réponse, mais ou se situe cette balise, sinon quel est le libellé car le fichier est assez long.... Cdt Link to comment Share on other sites More sharing options...
Eolia Posted January 1, 2017 Share Posted January 1, 2017 Quelque chose qui ressemble à {if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && !$PS_CATALOG_MODE} {if (($product.allow_oosp || $product.quantity > 0) && !$product.customizable)} {if isset($static_token)} <a class="button ajax_add_to_cart_button btn btn-default" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='Add to cart'}" data-id-product="{$product.id_product|intval}"> <div class="icone"><i class="icon icon-shopping-cart left"></i><span>{l s='Add to cart'}</span></div> </a> {else} <a class="button ajax_add_to_cart_button btn btn-default" href="{$link->getPageLink('cart',false, NULL, 'add=1&id_product={$product.id_product|intval}', false)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='Add to cart'}" data-id-product="{$product.id_product|intval}"> <div class="icone"><i class="icon icon-shopping-cart left"></i><span>{l s='Add to cart'}</span></div> </a> {/if} {else} <!-- <span class="button ajax_add_to_cart_button btn btn-default disabled"> <div class="icone"><i class="icon icon-shopping-cart left"></i><span>{l s='Add to cart'}</span></div> </span> Donc dans le premier {if} il suffit d'ajouter une condition impossible et le bouton ne s'affichera pas Exemple: {if isset($toto) && ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && !$PS_CATALOG_MODE} En espérant bien sûr que la variable $toto n'existe pas sur votre page^^ Link to comment Share on other sites More sharing options...
jimprestashop Posted January 1, 2017 Author Share Posted January 1, 2017 Super Eolia ca marche ! Merci pour l'aide et bonne soirée. Link to comment Share on other sites More sharing options...
Eolia Posted January 1, 2017 Share Posted January 1, 2017 Je n'ai pas l'habitude de conseiller des choses qui ne marchent pas^^ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now