I have a wholesale store where we do not need to collect shipping/payment methods. Currently on the OSEL screen if a customer does nothing but click the continue button everything works. I would like to be able to jump from the OCST screen to the OPAY screen. The OCST page contains the following code:
<form method="POST" action="&mvt:global:secure_sessionurl;">
<mvt:if expr="l.settings:basket:total GT 0">
<input type="hidden" name="Action" value="ORDR">
<input type="hidden" name="Screen" value="OUSL">
<mvt:elseif expr="g.Store:req_frship">
<input type="hidden" name="Action" value="ORDR">
<input type="hidden" name="Screen" value="OSEL">
<mvt:else>
<input type="hidden" name="Action" value="ORDR,SHIP,CTAX,AUTH">
<input type="hidden" name="Screen" value="INVC">
</mvt:if>
<input type="hidden" name="Store_Code" value="&mvte:store:code;">
Does anyone know how to change this code so the customer is taken directly to the OPAY screen?
BTW would anyone like to comment on what the heck a OUSL screen is? Or what the req_frship variable is?
<form method="POST" action="&mvt:global:secure_sessionurl;">
<mvt:if expr="l.settings:basket:total GT 0">
<input type="hidden" name="Action" value="ORDR">
<input type="hidden" name="Screen" value="OUSL">
<mvt:elseif expr="g.Store:req_frship">
<input type="hidden" name="Action" value="ORDR">
<input type="hidden" name="Screen" value="OSEL">
<mvt:else>
<input type="hidden" name="Action" value="ORDR,SHIP,CTAX,AUTH">
<input type="hidden" name="Screen" value="INVC">
</mvt:if>
<input type="hidden" name="Store_Code" value="&mvte:store:code;">
Does anyone know how to change this code so the customer is taken directly to the OPAY screen?
BTW would anyone like to comment on what the heck a OUSL screen is? Or what the req_frship variable is?
Comment