sebastien.michel.13 Posted June 16, 2014 Share Posted June 16, 2014 Bonjour a tous Je souhaiterai desactiver dans la categorie produit phare, l'effet passage de souris qui fait afficher le prix et le bouton "ajouter au panier" comment faire Par avance merci Link to comment Share on other sites More sharing options...
Eolia Posted June 16, 2014 Share Posted June 16, 2014 C'est votre thème qui gère cela. Regardez dans le répertoire de celui-ci, le module homefeatured. Vous devez avoir un fichier css associé avec une condition au survol ( :hover ) à moins que cela ait été mis directement dans le fichier .tpl... Link to comment Share on other sites More sharing options...
sebastien.michel.13 Posted June 16, 2014 Author Share Posted June 16, 2014 non pas de :hover dans le css est ce que ce n'est pas dans le fichier product List? Link to comment Share on other sites More sharing options...
Eolia Posted June 16, 2014 Share Posted June 16, 2014 (edited) non pas de :hover dans le css est ce que ce n'est pas dans le fichier product List?Quelle version de Prestashop au fait, parce que si c'est 1.6, c'est bootstrap qui gère ça... et donc dans le product-list.tpl, supprimer la div <div class="button-container"> {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 && $product.customizable != 2 && !$PS_CATALOG_MODE} {if ($product.allow_oosp || $product.quantity > 0)} {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}"> <span>{l s='Add to cart'}</span> </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}"> <span>{l s='Add to cart'}</span> </a> {/if} {else} <span class="button ajax_add_to_cart_button btn btn-default disabled"> <span>{l s='Add to cart'}</span> </span> {/if} {/if} <a itemprop="url" class="button lnk_view btn btn-default" href="{$product.link|escape:'html':'UTF-8'}" title="{l s='View'}"> <span>{l s='More'}</span> </a> </div> Ou uniquement les parties que vous ne voulez plus Edited June 16, 2014 by Eolia (see edit history) 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