View Single Post
  #229  
Old 11-12-2004, 11:26 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

Remove the if statement "{if $config.Shipping.realtime_shipping eq "Y"}" from customer/main/checkout.tpl

In other words:

Replace:

Code:
{if $config.Shipping.realtime_shipping eq "Y"} {capture name=checkout_dialog} <form action="cart.php" method=post name=cartform> {include file="customer/main/cart_contents.tpl"} <HR noshade size=1> {include file="customer/main/cart_totals.tpl"} {if $js_enabled} {include file="buttons/update.tpl"} {else} {include file="submit_wo_js.tpl" value=$lng.lbl_update} {/if} </form> {/capture} {include file="dialog.tpl" title=$lng.lbl_shipping content=$smarty.capture.checkout_dialog extra="width=100%"} {/if}

With:

Code:
{capture name=checkout_dialog} <form action="cart.php" method=post name=cartform> {include file="customer/main/cart_contents.tpl"} <HR noshade size=1> {include file="customer/main/cart_totals.tpl"} {if $js_enabled} {include file="buttons/update.tpl"} {else} {include file="submit_wo_js.tpl" value=$lng.lbl_update} {/if} </form> {/capture} {include file="dialog.tpl" title=$lng.lbl_shipping content=$smarty.capture.checkout_dialog extra="width=100%"}
Reply With Quote