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%"}