To add Comodo trustlogo to CS-Cart pages:
- Open the bottom.tpl file located in the skins/[CUSTOMER_ACTIVE_SKIN]/customer directory of your CS-Cart installation, where [CUSTOMER_ACTIVE_SKIN] is an active skin of your storefront.
- Add the Comodo code taken from their site to the end of the template. Most probably the code will look like this:
{if 'HTTPS'|defined}
<script language="JavaScript" src="https://secure.comodo.net/trustlogo/javascript/trustlogo.js" type="text/javascript"></script>
{else}
<script language="JavaScript" src="http://www.trustlogo.com/trustlogo/javascript/trustlogo.js" type="text/javascript"></script>
{/if}
<div style="position:fixed; right:0px; bottom: 0px" >
<a href="http://www.instantssl.com" id="comodoTL">SSL</a>
{if 'HTTPS'|defined}
<script type="text/javascript">TrustLogo("https://www.secure_domain.com/ssl/images/secure_site.gif", "SC", "bottomright");</script>
{else}
<script type="text/javascript">TrustLogo("http://www.your_domain.com/ssl/images/secure_site.gif", "SC", "bottomright");</script>
{/if}
</div>
where www.your_domain.com is the address of your store and www.secure_domain.com is the address of your store on a secure server.
- Save the file.