We have Phosphor Media write a new Net Terms (15 and 30) module for us. We are using the new Booc theme. It appears to have a conditional for the payment modules. I added the new module to the conditionals on the OSEL and OPAY page (module code: pm_net), but it is not showing on the page.
My code looks like this:
Anything I am missing?
My code looks like this:
HTML Code:
<mvt:if expr="(l.settings:method:module EQ 'check') OR (l.settings:method:module EQ 'cod') OR (l.settings:method:module EQ 'customercredit') OR (l.settings:method:module EQ 'pm_net')"> <label class="input--medium font--medium shipping-selection-form__label shipping-selection-form__payment-method" data-hook="shipping-selection-form__payment-method"> <input type="radio" name="PaymentMethod" value="&mvte:method:module;:&mvte:method:code;"> &mvt:method:name; </label> <mvt:elseif expr="l.settings:method:module NE 'check' AND l.settings:method:module NE 'cod' AND l.settings:method:module NE 'customercredit' AND NOT('pal' CIN l.settings:method:code)"> <label class="input--medium font--medium shipping-selection-form__label shipping-selection-form__payment-method" data-hook="shipping-selection-form__payment-method"> <input type="radio" name="PaymentMethod" value="&mvte:method:module;:&mvte:method:code;"> Credit Card </label> <mvt:foreachstop /> </mvt:if>
Comment