There is a nifty feature on the product page which calculates the price based on the number in the Quantity field. But I have a lot of items that have minimum quantities above 1.
Example: A product is $3.09 each and has a minimum quantity of 100. I know it will confuse some of my customers to see the price as $309.00 when they first visit the page.
So, what changes would I have to make to the template to show just the simple, non-calculated price? I'm already in advanced mode.
Thanks for any help.
Example: A product is $3.09 each and has a minimum quantity of 100. I know it will confuse some of my customers to see the price as $309.00 when they first visit the page.
So, what changes would I have to make to the template to show just the simple, non-calculated price? I'm already in advanced mode.
Code:
<mvt:comment>PRODUCT PRICE BEGIN</mvt:comment> <mvt:if expr="l.settings:product:price EQ 0"> <!-- If price is Zero, then display this: (nothing) --> <mvt:else> <!-- Otherwise, display this: --> <div class="h3 nbm"> <mvt:if expr="l.settings:product:base_price GT l.settings:product:price"> <s id="js-additional-price" class="product-additional-price">&mvt:product:formatted_base_price;</s> </mvt:if> <span id="js-price-value" class="product-price" data-base-price="&mvt:product:price;">&mvt:product:formatted_price;</span> <mvt:if expr="l.settings:product:customfield_values:customfields:product_flag"> <span class="product-product-flag">&mvt:product:customfield_values:customfields:product_flag;</span> </mvt:if> </div> </mvt:if> <mvt:comment>PRODUCT PRICE END</mvt:comment>
Comment