X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   GeoTrust Logo on Checkout page (https://forum.x-cart.com/showthread.php?t=41243)

geomariv 07-21-2008 09:35 AM

GeoTrust Logo on Checkout page
 
I would like to put my secure geotrust logo on the page where the user would view all the items in his or her cart. I would like to place this around the button that says "Checkout". Or say something like "Click here to proceed to secure checkout" or something like that.

Anyway, what file would i have to add the geotrust code into to do this and where in the file would i place it?

Thanks in advance for the help!

JWait 07-22-2008 08:42 AM

Re: GeoTrust Logo on Checkout page
 
Start with skin1/modules/Fast_Lane_Checkout/home_main.tpl.

"checkout_0_enter.tpl", "checkout_1_profile.tpl", etc. are each of the steps in the checkout process.

The part after the "else" statement is the default "Big Buttons".
You may also check skin1/customer/main/cart.tpl but it would probably look better displayed next to the "Big Buttons".


Here is home_main.tpl with the added image (your filename may vary)
Code:

{if $checkout_step eq 0}
{include file="modules/Fast_Lane_Checkout/checkout_0_enter.tpl"}

{elseif $checkout_step eq 1}
{include file="modules/Fast_Lane_Checkout/checkout_1_profile.tpl"}

{elseif $checkout_step eq 2}
{include file="modules/Fast_Lane_Checkout/checkout_2_method.tpl"}

{elseif $checkout_step eq 3}
{include file="modules/Fast_Lane_Checkout/checkout_3_place.tpl"}

{else}

<div align="right">
<table cellpadding="0" cellspacing="0">
<tr>
<td>{include file="modules/Fast_Lane_Checkout/big_button.tpl" button_title=$lng.lbl_continue_shopping style="button" href="`$back_url`"}</td>
<td><img src="{$ImagesDir}/spacer.gif" width="10" height="1" alt="" /></td>
<td align="right">{include file="modules/Fast_Lane_Checkout/big_button.tpl" button_title=$lng.lbl_checkout style="button" href="cart.php?mode=checkout" color="red" arrow="Y"}</td>
<td><img src="{$ImagesDir}/spacer.gif" width="10" height="1" alt="" /></td>
<td align="right"><IMG src="{$ImagesDir}/quickssl.jpg" width="102" height="47" border="0" alt="Secured by GeoTrust" /></td>
</tr>
</table>
</div>

{include file="customer/main/cart.tpl"}

{/if}



All times are GMT -8. The time now is 02:57 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.