Forum doesn't like me tonight, this will be the third time I have tried to post this.
The Option Price display fine
The Price Subtotal displays fine
but the Option Subtotal doesn't display. Also it needs to display the subtotal for each option, not a grand subtotal for the Options. Could the lack of a foreach around the Option Subtotal be part of the problem?
This code is from the Iron & Wool BASK screen Basket Contents
The Option Price display fine
Code:
<mvt:foreach iterator="option" array="group:options"> <mvt:if expr="l.settings:option:base_price"> <p><small>&mvt:option:formatted_base_price;</small></p> </mvt:if> </mvt:foreach>
Code:
<mvt:if expr="l.settings:group:subtotal_base_price NE l.settings:group:subtotal"> <s>&mvt:group:formatted_subtotal_base_price;</s><br /> </mvt:if> <p>&mvt:group:formatted_subtotal;</p> <mvt:if expr="l.settings:option:subtotal_base_price OR l.settings:option:subtotal"> <mvt:if expr="l.settings:option:subtotal_base_price NE l.settings:option:subtotal"> <s><small>&mvt:option:formatted_subtotal_base_price;<small></s><br /> </mvt:if> <p><small>&mvt:option:formatted_subtotal;</small></p> </mvt:if>
but the Option Subtotal doesn't display. Also it needs to display the subtotal for each option, not a grand subtotal for the Options. Could the lack of a foreach around the Option Subtotal be part of the problem?
This code is from the Iron & Wool BASK screen Basket Contents
Comment