
|
Posted 23 November 2006 - 04:15 PM #1
Posted 23 November 2006 - 05:06 PM #2
Posted 24 November 2006 - 05:35 PM #3
Posted 27 November 2006 - 06:49 AM #4
<tr> <td colspan="2" align="right">{$checkout_add_button}</td> </tr>
<tr> <td colspan="2" align="right">{$lang.or}</td> </tr> <tr>a <td colspan="2" align="right">{$checkout_add_button}</td> </tr>
Posted 11 December 2006 - 08:27 PM #5
Posted 19 December 2006 - 12:25 AM #7
Ok.....NM....I figured it out.....
Posted 01 January 2007 - 11:16 PM #8
You can try to replace the following code in the [cscart_dir]\skins\default_blue\customer\cart_pages\cart.tpl file:
<tr> <td colspan="2" align="right">{$checkout_add_button}</td> </tr>
with this:<tr> <td colspan="2" align="right">{$lang.or}</td> </tr> <tr>a <td colspan="2" align="right">{$checkout_add_button}</td> </tr>
Also you should create the "or" language varible if it is empty.
Posted 01 January 2007 - 11:20 PM #9
What did you do? I have the same problem.
Posted 01 March 2007 - 07:04 AM #11
<td align="right">
{include file="buttons/checkout.tpl" but_onclick="javascript: if (fn_check_all_exceptions(true)) self.location='$index_script?$target_name=checkout&$mode_name=customer_info'; else alert(cannot_buy);"}</td>
{if $checkout_add_button}
</tr><tr><td colspan="2" align="right"><br /><br /><br />{$lang.or}{$checkout_add_button}</td>
</tr>
{/if}
</table>
Posted 24 April 2007 - 02:38 PM #12
Posted 19 May 2008 - 02:14 PM #13
Posted 08 June 2009 - 06:14 PM #14
You can try to replace the following code in the [cscart_dir]\skins\default_blue\customer\cart_pages\cart.tpl file:
<tr> <td colspan="2" align="right">{$checkout_add_button}</td> </tr>
with this:<tr> <td colspan="2" align="right">{$lang.or}</td> </tr> <tr>a <td colspan="2" align="right">{$checkout_add_button}</td> </tr>
Also you should create the "or" language varible if it is empty.
Posted 08 June 2009 - 09:13 PM #15
Posted 10 June 2009 - 11:29 AM #16
Posted 10 October 2009 - 09:26 PM #17
Posted 12 October 2009 - 07:25 AM #18
<div class="float-right">
{if $payment_methods}
{if $settings.General.one_page_checkout != "Y"}
{assign var="m_name" value="customer_info"}
{else}
{assign var="m_name" value="checkout"}
{/if}
{include file="buttons/checkout.tpl" but_onclick="fn_proceed_to_checkout('$m_name');" but_href="$index_script?dispatch=checkout.checkout"}
{/if}
{if $checkout_add_buttons}
{foreach from=$checkout_add_buttons item="checkout_add_button"}
<p>-{$checkout_add_button}</p>
{/foreach}
{/if}
</div>
<div class="float-right">
{if $payment_methods}
{if $settings.General.one_page_checkout != "Y"}
{assign var="m_name" value="customer_info"}
{else}
{assign var="m_name" value="checkout"}
{/if}
{include file="buttons/checkout.tpl" but_onclick="fn_proceed_to_checkout('$m_name');" but_href="$index_script?dispatch=checkout.checkout"}
{/if}
{if $checkout_add_buttons}
{foreach from=$checkout_add_buttons item="checkout_add_button"}
<p>-OR-</br>{$checkout_add_button}</p>
{/foreach}
{/if}
</div>