Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

I need to add an image/link to the footer


ItsAllGood

Recommended Posts

Posted

Hi,

 

I need to add an eway payment link to my website.

I was thinking of adding it to the footer section directly under the 'powered by oscommerce' line.

 

Can anyone help me?

 

This is the code for what i need to insert:

 

<!-- Begin eWAY Linking Code -->

<div id="ewayBlock">

<a href="http://www.eway.com.au/offers/creditcards.aspx" title="Credit Card Processing">Credit Card Processing</a>

<a href="http://www.eway.com.au/offers/paymentgateway.aspx" title="Payment Gateway">Payment Gateway</a>

<a href="http://www.eway.com.au/offers/ecommerce.aspx" title="E-Commerce">E-Commerce</a>

</div>

<script language="javascript">

var element = "ewayBlock";

</script>

<script language="javascript" src="https://www.eway.com.au/referrer/link.ashx?clientID=37e2e630-262e-4236-afff-dfd279b6425f&size=Smallℑ=2&format=horizontal&color=ECECEC"></script>

<!-- End eWAY Linking Code -->

Posted

Look in /catalog/includes/footer.php

 

Find this code:

 

<table border="0" width="100%" cellspacing="0" cellpadding="0">
 <tr>
<td align="center" class="smallText"><?php echo FOOTER_TEXT_BODY; ?></td>
 </tr>
</table>

Alter it to this:

 

<table border="0" width="100%" cellspacing="0" cellpadding="0">
 <tr>
<td align="center" class="smallText"><?php echo FOOTER_TEXT_BODY; ?></td>
 </tr>
 <tr>
<td align="center">

************ DELETE THIS LINE AND PUT YOUR CODE IN THIS AREA ************ 

</td>
 </tr>
</table>

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Archived

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

×
×
  • Create New...