Jump to content

Downloadable Product looping on Shipping


Recommended Posts

Hi,

 

I'm on 1.4.6.2 and running into a bug that was supposedly fixed.

 

I have a single downloadable product that will be FREE. I set it to $0, 9999 allowed downloads and 0 0 for the other 2 fields. I've even tried recreating the product.

 

When I go to "checkout" to receive my download link on my test user, I click through the order process and get presented with a BLANK shipping screen. (I have several UPS carriers setup via UPS module).

 

I can BACK/NEXT, but no options to select carrier.

 

If you click on NEXT, page loads for a few seconds and drops me out to the same empty shipping page.. over and over and over...

 

Any ideas?

Link to comment
Share on other sites

  • 2 months later...

Try to jump shipping page by adding this to the order-address.tlp:

 

{if $virtual_cart}
   <p class="order_navigation">
 <input type="hidden" class="hidden" name="step" value="3" />
 <a href="{$base_dir_ssl}order.php?step=0" title="{l s='Previous'}" class="buttonprecedent">{l s='Previous'}</a>
 <input type="submit" name="processAddress" value="{l s='Next'}" class="buttonorder" style="color:#FFF"/>
</p>
   {else}
   <p class="order_navigation">
 <input type="hidden" class="hidden" name="step" value="2" />
 <a href="{$base_dir_ssl}order.php?step=0" title="{l s='Previous'}" class="buttonprecedent">{l s='Previous'}</a>
 <input type="submit" name="processAddress" value="{l s='Next'}" class="buttonorder" />
</p>
   {/if}

 

instead of

<p class="order_navigation">
<input type="hidden" class="hidden" name="step" value="2" />
<a href="{$base_dir_ssl}order.php?step=0" title="{l s='Previous'}" class="buttonprecedent">{l s='Previous'}</a>
<input type="submit" name="processAddress" value="{l s='Next'}" class="buttonorder" />
</p>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...