After your Comodo SSL product has been installed on your site go sign in to the knowledgebase and goto the downloads section. There you will find the COMODO Corner of Trust Logo download. After you have downloaded the image file you will need to upload the image file to your images directory of your Zen Cart install.
After you have placed the image in the images directory goto http://www.trustlogo.com/ssl-certifi...rt/index2.html
Once on the Comodo site: You will need to enter the URL to the image on your site https://www.yourdomainname.com/images/secure_site.gif (NOTICE: please use https instead of http if you want the trust logo to appear on all pages) and click the load image button. The Image you uploaded to your images directory should appear, if it doesn't you need to check the URL you typed in for errors.
The Comodo site will generate the code required to display your Comodo Trust Logo on your site.
Leave that page up in your browser. You now want to open includes/templates/YOUR_CUSTOM_TEMPLATE/common/html_header.php in a text editor (notepad) and find the following section:
Code:
//DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
?>
</head>
<?php // NOTE: Blank line following is intended: ?>
Now go back to the Comodo site you left open in your browser and copy the first snippet of code and then come back to the text editor and paste the code right before the </head> tag So that you end up with the following (sample code do not use):
Code:
//DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
?>
<script language="javascript" type="text/javascript">
//<![CDATA[
var cot_loc0=(window.location.protocol == "https:")? "https://secure.comodo.net/trustlogo/javascript/cot.js" :
"http://www.trustlogo.com/trustlogo/javascript/cot.js";
document.writeln('<scr' + 'ipt language="JavaScript" src="'+cot_loc0+'" type="text\/javascript">' + '<\/scr' + 'ipt>');
//]]>
</script>
</head>
<?php // NOTE: Blank line following is intended: ?>
Save the file and upload back to the server in includes/templates/YOUR_CUSTOM_TEMPLATE/common directory
You now want to open includes/templates/YOUR_CUSTOM_TEMPLATE/common/tpl_main_page.php in a text editor (notepad) and find the following section:
Code:
<!--eof- banner #6 display -->
</body>
Now go back to the Comodo site you left open in your browser and copy the second snippet of code and then come back to the text editor and paste the code right before the </body> tag so that you end up with the following (sample code do not use):
Code:
<!--eof- banner #6 display -->
<a href="http://www.instantssl.com" id="comodoTL">SSL</a>
<script language="JavaScript" type="text/javascript">
COT("https://www.yourdomain.com/images/secure_site.gif", "SC2", "none");
</script>
</body>
Save the file and upload back to the server in includes/templates/YOUR_CUSTOM_TEMPLATE/common directory
Thats it your all done. Refresh your site and the Comodo Corner of Trust Logo should appear in the lower right corner of the browser window.