I'm trying to get the Checkout: Basket Summary ReadyTheme Content Section to display just like the Mini-Basket does when it comes to the Product Attribute Price. The Mini-Basket has a token that I can't quite figure out how to make work in the Checkout: Basket Summary

	It is used within this conditional
	
I thought maybe this would work but it is pulling in the price of one of the items and displaying it for every item in the basket
	
The Mini-Basket also shows the attribute price next to the attribute item listed. I tried to get that to work too, but it didn't for me...
					
Code:
	
	&mvt:item:formatted_subtotal_comprehensive;
Code:
	
	<mvt:if expr="l.settings:item:subtotal_base_price OR l.settings:item:subtotal">
                                <mvt:if expr="l.settings:item:subtotal_base_price NE l.settings:item:subtotal">
                                    <s>&mvt:item:formatted_subtotal_base_price;</s><br />
                                </mvt:if>
                                <strong>&mvt:item:formatted_subtotal;</strong>
                            <mvt:else>
                                <strong>[&mvt:item:formatted_subtotal_comprehensive;</strong>
                            </mvt:if>
I thought maybe this would work but it is pulling in the price of one of the items and displaying it for every item in the basket
Code:
	
	<mvt:if expr="l.settings:group:subtotal_base_price OR l.settings:group:subtotal">
                                <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>
                                &mvt:group:formatted_subtotal;
                               <mvt:else>
                                <strong>&mvt:item:formatted_subtotal_comprehensive;</strong>
                            </mvt:if>
The Mini-Basket also shows the attribute price next to the attribute item listed. I tried to get that to work too, but it didn't for me...



Comment