Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help to add box on right for secure site with link


ukmobile786

Recommended Posts

Posted

CAN SOME ONE PLEASE HELP ME I NEED TO ADD THE FOLLOWING BOX BOTTOM OF PAYMENT ACCECPTED ON www.uk-mobilestore.co.uk

 

I NEED TO ADD SECURE SITES LOGO

 

THIS IS THE CODE I WOUKD LIKE TO ADD

 

<!-- SafeBuy Verification Seal -->

<a href="http://www.safebuy.org.uk/certificate/0bf172b9-fe53-443e-9c96-8529a9cdb0e0.html"><img src="/safebuy.jpg" border="0" /></a>

<!-- / SafeBuy Verification Seal -->

 

CAN SOME ONE PLEASE EMAIL ME STEP TO STEP INTRUCTONS ON HOW TO DO THIS

Posted

The code inside your new box should look like this:

 

<?php
/*
 $Id: site_security.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2003 osCommerce

 Released under the GNU General Public License
*/
?>
<!-- site_security //-->
	  <tr>
		<td>
<?php
 $info_box_contents = array();
 $info_box_contents[] = array('text' => BOX_HEADING_SITE_SECURITY);

 new infoBoxHeading($info_box_contents, false, false);

 $info_box_contents = array();
 $info_box_contents[] = array('text' => '<a href="http://www.safebuy.org.uk/certificate/0bf172b9-fe53-443e-9c96-8529a9cdb0e0.html" target="_blank">' . tep_image(DIR_WS_IMAGES . 'rapidcert.gif', 'Safebuy Approved') . '</a>');

 new infoBox($info_box_contents);
?>
		</td>
	  </tr>
<!-- site_security_eof //-->

 

Obviously, you might have named the box and box heading differently so ignore that but the array('text' => '<a href="... part is how you need it.

Posted

No. In the new box you made.

 

You don't need it all, I was just showing you how it would look all together. So you wouldn't get.....um....confused. :rolleyes:

 

This is the relevant bit:

 

$info_box_contents[] = array('text' => '<a href="http://www.safebuy.org.uk/certificate/0bf172b9-fe53-443e-9c96-8529a9cdb0e0.html" target="_blank">' . tep_image(DIR_WS_IMAGES . 'rapidcert.gif', 'Safebuy Approved') . '</a>');

 

Look for it where you put the rapidcert.gif in your new box.

Posted

Oh ok, you installed a contribution rather than build your new box right?

 

Post the complete code from includes/boxes/securelogo.php between code tags and I'll put the new code in for you.

Posted

do you know how to move the quick find box on the left to left top right at the top so customer get easier to find their product

Posted

Take this code out of includes/column_left.php

 

  require(DIR_WS_BOXES . 'search.php');

 

and put it into includes/column_right.php. Under the shopping cart call will save a little more work.

 

  require(DIR_WS_BOXES . 'shopping_cart.php');
 require(DIR_WS_BOXES . 'search.php');

Archived

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

×
×
  • Create New...