Hello, I'm trying to get rid of displaying "Pending" status because it is confusing some customers. I want ORDH and ORDS in our Levels theme to not show pending. I tried the 2 statements below, and both skip to else, so I'm doing it wrong....
<mvt:if expr="l.settings:item:order_status EQ 'Pending' ">In Production
<mvt:elseif expr="l.settings:item:order_status EQ 'Processing' ">In Production
<mvt:else>&mvt:order:order_status;
</mvt:if>
<mvt:if expr="l.settings:order:order_status EQ '0'">In Production
<mvt:elseif expr="l.settings:order:order_status EQ '100'">In Production
<mvt:else>&mvt:order:order_status;
</mvt:if>
Thanks for helping!
<mvt:if expr="l.settings:item:order_status EQ 'Pending' ">In Production
<mvt:elseif expr="l.settings:item:order_status EQ 'Processing' ">In Production
<mvt:else>&mvt:order:order_status;
</mvt:if>
<mvt:if expr="l.settings:order:order_status EQ '0'">In Production
<mvt:elseif expr="l.settings:order:order_status EQ '100'">In Production
<mvt:else>&mvt:order:order_status;
</mvt:if>
Thanks for helping!
Comment