Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

HELP SECURITY SEAL


worldheadja

Recommended Posts

I got the link from my hosting company for the seal that says my site is secure but how do i add this link to my page? :'(

 

Usually, the SSL certificate provider will also provide the HTML code for the seal.

 

Just past that code into the appropriate page...where you want it displayed.

 

Even without a "seal" if your site is protected by an SSL a small padlock icon

will be displayed in the viewer's browser - indicating it's securesite/page.

 

~Roland

Link to comment
Share on other sites

Usually, the SSL certificate provider will also provide the HTML code for the seal.

 

Just past that code into the appropriate page...where you want it displayed.

 

Even without a "seal" if your site is protected by an SSL a small padlock icon

will be displayed in the viewer's browser - indicating it's securesite/page.

 

~Roland

 

The padlock is there but only when the customer logs into there account or in the checkout area but i want the securty seal on the home page. I got the html code from my host company but the site is php i have no idea how to insert this code in (i know nothing about php :'( )

Link to comment
Share on other sites

Where do you want it to be placed on the homepage?

 

If placed in header, footer, column left or column right it will show on all pages unless you use an if statement.

 

If it is just on the homepage ie. index.php you could add it into the define in includes/languages/{language}/index.php

 

define('TEXT_MAIN', 'html can go in here');

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Link to comment
Share on other sites

Where do you want it to be placed on the homepage?

 

If placed in header, footer, column left or column right it will show on all pages unless you use an if statement.

 

If it is just on the homepage ie. index.php you could add it into the define in includes/languages/{language}/index.php

 

define('TEXT_MAIN', 'html can go in here');

 

There are text currently in this section "This is a default setup of the osCommerce project, products shown are for demonstrational purposes,......." should i remove these?

Link to comment
Share on other sites

There are text currently in this section "This is a default setup of the osCommerce project, products shown are for demonstrational purposes,......." should i remove these?

I'm so srry i just went back and looked at the link its <script language="Javascript".......... will this still work and what if i want to place the seal in the right colomn how would i go about do this?

Thank you so much for your help :D

Link to comment
Share on other sites

"Parse error: parse error, unexpected........................... on line 13"

unexpected what?

 

you will need to post the code, it is most likely that there is an unescaped '

 

if javascript then you could just add the code to the main index.php file where you wish it to show.

 

If placing in the right column and still only wanting it to show on the main page you would require something along the lines of

<?php
if (basename($PHP_SELF) == FILENAME_DEFAULT) {
?>
<tr>
<td>
your script goes here
</td>
</tr>
<?php
}
?>

and this would be placed into includes/column_right.php

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...