Jump to content

desactiver effet au survol de la souris sur les produits phares


Recommended Posts

1. /themes/default-bootstrap/js/global.js, ligne 183, modifiez:

function blockHover(status)
{
    var screenLg = $('body').find('.container').width() == 1170;
    ...

en

function blockHover(status)
{
    $('.product_list .button-container').show();
    return;

    var screenLg = $('body').find('.container').width() == 1170;
    ...

(On simule un survol permanent de tous les produits)

 

 

2. /themes/default-bootstrap/css/product_list.css, ligne 204, modifiez:

    ul.product_list.grid > li .product-container .content_price {
      padding-bottom: 2px;
      line-height: 21px;
      }

en

    ul.product_list.grid > li .product-container .content_price {
      padding-bottom: 2px;
      line-height: 21px;
      height: 60px;
      }

(Pour conserver la même hauteur qu'il y ait ou non réduction)

 

Link to comment
Share on other sites

  • 4 weeks later...
  • 2 months later...

Vous faites la même chose (annulation de l'animation au survol), et vous masquez ce que vous ne voulez pas voir affiché (soit dans le tpl, soit en js).

Cela dépend de votre thème et de ce que voulez-vous conserver sur chaque vignette produit: image, nom, prix, prix barré, réduction, bouton ajouter au panier, bouton détail ?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...