Question

My question involves how the qty increment message is displayed on the frontend.

What I want to do is only display the message found in the qtyincrement.phtml file when the qty increment is greater than one. If the item is purchasable in a quantity of 1 I don't want the message displayed. What is the best way to achieve this?

I am currently on version 1.9

Était-ce utile?

La solution

Edit app/design/frontend/[PACKAGE]/[THEME]/template/cataloginventory/qtyincrements.phtml and add another condition into the if statement like so:

<?php if ($this->getProductQtyIncrements() && $this->getProductQtyIncrements() > 1) : ?>
Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top