Jump to content

Minimum quantité pour un groupe


Recommended Posts

Bonjour à tous, 

J'aimerais trouvé une variable capable de mettre un minimum de quantité selon le groupe. 
Pour le fait : J'ai un groupe PRO, qui dois avoir minimum 2 quantité dans son panier, pour pouvoir ajouter au panier. 

J'ai testé ceci, mais ça n'a pas l'air d'être fonctionnel ^^

  {if $product.minimal_quantity < 2 || $customer.id_default_group==4}
        {l
        s='The minimum purchase order quantity for the product is 2.'
        }
          {l s='On affiche ici'}
        {/if}

Merci pour votre aide, 
Bien à vous , 

Jonathan 

Edited by Grafyx89 (see edit history)
Link to comment
Share on other sites

J'ai essayé ainsi

 

<div class="add"   {if $product.minimal_quantity < 2 || $customer.id_default_group==4} style="display:none;" {else} if $product.minimal_quantity > 2 || $customer.id_default_group==4} style="display:block;" {/if} >
          <button
            class="btn btn-primary add-to-cart"
            data-button-action="add-to-cart"
            type="submit"
            {if !$product.add_to_cart_url}
              disabled
            {/if}
          >
            <i class="material-icons shopping-cart">&#xE547;</i>
            {l s='Add to cart' d='Shop.Theme.Actions'}
          </button>
        </div>


Mais il reste en "Display:none;" même au delà de 2 

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...