문제

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

도움이 되었습니까?

해결책

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) : ?>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top