ORDERFORMS 'un içinde, hangi orderformu kullanıyorsanız,
onun klasörünü açın,

viewcart.tpl 'de


Alıntı
<h2>{$LANG.orderpaymentmethod}</h2>
<div class="cartbox">{foreach key=num item=gateway from=$gateways}
<label><input type="radio" name="paymentmethod" value="{$gateway.sysname}" onclick="{if $gateway.type eq "CC"}showCCForm(){else}hideCCForm(){/if}"{if $selectedgateway eq $gateway.sysname} checked{/if} /> {$gateway.name}</label>
{/foreach}</div>

<div id="ccinputform"{if $selectedgatewaytype neq "CC"} style="display:none;"{/if}>
<table>
{if $clientsdetails.cclastfour}
<tr>
<td width="200" class="fieldarea"></td>
<td><label><input type="radio" name="ccinfo" value="useexisting" id="useexisting" onclick="useExistingCC()"{if $clientsdetails.cclastfour} checked{else} disabled{/if} /> {$LANG.creditcarduseexisting}{if $clientsdetails.cclastfour} ({$clientsdetails.cclastfour}){/if}</label><br />
<label><input type="radio" name="ccinfo" value="new" id="new" onclick="enterNewCC()"{if !$clientsdetails.cclastfour || $ccinfo eq "new"} checked{/if} /> {$LANG.creditcardenternewcard}</label>
</td>
</tr>
{else}
<input type="hidden" name="ccinfo" value="new" />
{/if}
<tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}>
<td class="fieldarea">{$LANG.creditcardcardtype}</td>
<td><select name="cctype">
{foreach key=num item=cardtype from=$acceptedcctypes}
<option{if $cctype eq $cardtype} selected{/if}>{$cardtype}</option>
{/foreach}
</select></td>
</tr>
<tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}>
<td class="fieldarea">{$LANG.creditcardcardnumber}</td>
<td><input type="text" name="ccnumber" size="30" value="{$ccnumber}" autocomplete="off" /></td>
</tr>
<tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}>
<td class="fieldarea">{$LANG.creditcardcardexpires}</td>
<td><select name="ccexpirymonth" id="ccexpirymonth" class="newccinfo">{foreach from=$months item=month}<option>{$month}</option>{/foreach}</select> / <select name="ccexpiryyear" class="newccinfo">{foreach from=$years item=year}<option>{$year}</option>{/foreach}</select></td>
</tr>
{if $showccissuestart}
<tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}>
<td class="fieldarea">{$LANG.creditcardcardstart}</td>
<td><input type="text" name="ccstartmonth" size="2" maxlength="2" value="{$ccstartmonth}">/<input type="text" name="ccstartyear" size="2" maxlength="2" value="{$ccstartyear}" /> (MM/YY)</td>
</tr>
<tr class="newccinfo"{if $clientsdetails.cclastfour && $ccinfo neq "new"} style="display:none;"{/if}>
<td class="fieldarea">{$LANG.creditcardcardissuenum}</td>
<td><input type="text" name="ccissuenum" value="{$ccissuenum}" size="5" maxlength="3" /></td>
</tr>
{/if}
<tr>
<td width="200" class="fieldarea">{$LANG.creditcardcvvnumber}</td>
<td><input type="text" name="cccvv" value="{$cccvv}" size="5" autocomplete="off" /> <a href="#" onclick="window.open('images/ccv.gif','','width=280,height=200,scrollbars=no,to p=100,left=100');return false">{$LANG.creditcardcvvwhere}</a></td>
</tr>
{if $shownostore}
<tr>
<td class="fieldarea"></td>
<td><label><input type="checkbox" name="nostore" /> {$LANG.creditcardnostore}</label></td>
</tr>
{/if}
</table>
<br />

</div>


yazan yeri bulun.

kalın ile işaretlediğim yeri silin. kaydedin.