ukmobile786 Posted August 29, 2008 Posted August 29, 2008 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
spax Posted August 29, 2008 Posted August 29, 2008 It isn't difficult. Read this and you'll have no problems. http://www.oscommerce.info/kb/osCommerce/C...g_Area/Boxes/66
ukmobile786 Posted August 29, 2008 Author Posted August 29, 2008 sorry i am not good in programming, if you can please provide step to step intructions
spax Posted August 29, 2008 Posted August 29, 2008 I couldn't make it much more step by step than what I linked to. What part do you not understand?
ukmobile786 Posted August 29, 2008 Author Posted August 29, 2008 ok, i have just done it :):) please can you let me know how am i suppose to add a link on to the image if you look on to the site www.uk-mobilestore.co.uk >> site security i want to add a link to the image http://www.safebuy.org.uk/certificate/0bf1...29a9cdb0e0.html so that my customers know this site is secured
spax Posted August 29, 2008 Posted August 29, 2008 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.
ukmobile786 Posted August 29, 2008 Author Posted August 29, 2008 and where do you want me to add this code, in ccolumn_right.php???
ukmobile786 Posted August 29, 2008 Author Posted August 29, 2008 at the moment i got this code //secure seal Box v1.0 include(DIR_WS_BOXES . 'securelogo.php'); ?>
spax Posted August 29, 2008 Posted August 29, 2008 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.
spax Posted August 29, 2008 Posted August 29, 2008 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.
ukmobile786 Posted August 29, 2008 Author Posted August 29, 2008 Thank you very much peter, 100% the best
ukmobile786 Posted August 29, 2008 Author Posted August 29, 2008 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
spax Posted August 29, 2008 Posted August 29, 2008 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');
Recommended Posts
Archived
This topic is now archived and is closed to further replies.