I am following the instructions but the instructions lead me to believe there should be more than one instance of {elseif $payment_methods ne ""} which I cannot find. Based on the instructions it looks like the code for that section should look like this:
Quote:
elseif $payment_methods ne ""}
{capture name=dialog}
<FORM method="get" action="cart.php" name="checkout_form">
{$lng.txt_payment_method}</p>
{if $config.Shipping.realtime_shipping eq "Y"}
{capture name=checkout_dialog}
<FORM action="cart.php" method="POST" name="cartform">
<INPUT type="hidden" name="cart_operation" value="cart_operation">
{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" href="javascript: document.cartform.submit()" js_to_href="Y"}
{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}
|
Is this right?