I was curious as to when this conditional statement would be met or true?
How is this value being set?
I thought it was only met if a customer was logged in but I think I may be wrong.
This is in the Customer Fields Section of OCST
How is this value being set?
I thought it was only met if a customer was logged in but I think I may be wrong.
This is in the Customer Fields Section of OCST
Code:
<mvt:if expr="l.settings:customer:match">
<script>
<mvt:if expr="l.settings:customer:primaddr EQ 'shipping'">
document.getElementById( 'billing_to_show' ).checked = true;
<mvt:elseif expr="l.settings:customer:primaddr EQ 'billing'">
document.getElementById( 'shipping_to_show' ).checked = true;
</mvt:if>
</script>
</mvt:if>
Comment