Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding my Secured.com seal


KingCold

Recommended Posts

I want to add my seal to the bottom of the info box under the contact us link. I got the following link from secured.com, but have no clue as to how to integrate this into the info box.

 

The link from secured.com for the seal image:

<a href="https://secured.com/verify.php" target="_self"><img src="https://secured.com/seal.gif" border="0"></a>

 

Where and how do I put this into the code to get it to show up under the Contact us in the info box...

Link to comment
Share on other sites

I want to add my seal to the bottom of the info box under the contact us link.  I got the following link from secured.com, but have no clue as to how to integrate this into the info box.

 

The link from secured.com for the seal image:

<a href="https://secured.com/verify.php" target="_self"><img src="https://secured.com/seal.gif" border="0"></a>

 

Where and how do I put this into the code to get it to show up under the Contact us in the info box...

 

 

Open catalog/includes/boxes/information.php

look for

'<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>');

 

change that to

'<a href="https://secured.com/verify.php" target="_self"><img src="https://secured.com/seal.gif" border="0"></a>');

 

And you have added your image :)

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Link to comment
Share on other sites

You actually need to take this piece of code and alter it slightly (removing the semi-colon and close bracket and replacing it with a dot):

 

'<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' .

 

and then add this underneath:

 

'<a href="https://secured.com/verify.php" target="_self"><img src="https://secured.com/seal.gif" border="0"></a>');

 

Vger

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...