mtechama Posted October 19, 2005 Posted October 19, 2005 I am about to open up a computer website and I want to know how you can links in the information box: i.e. Information: Shipping & Returns Support Forums - Opens an seperate Window for the forums Downlowns - and how to create a page for that. and it will have links for website for Driver Downloads Web Clients- Web Hosting - Information about Web Hosting Plans etc. Where can I find that file, and do I do that? Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP!
jasper98 Posted October 19, 2005 Posted October 19, 2005 http://www.oscommerce.info/kb/osCommerce/C...g_Area/Boxes/49 Follow that example to add links to your information box.
mtechama Posted October 19, 2005 Author Posted October 19, 2005 I have a test site that I can work with http://www.mtechama-test.com/catalog ok in my information box I add a link call Support Forums. with that link I want to link it at http://www.mtechama.com/support/forums/phpBB2/index.php as a seperate page (Window) Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP!
jasper98 Posted October 19, 2005 Posted October 19, 2005 includes/boxes/information.php Replace: <a href="' . tep_href_link(FILENAME_WHATEVERYOUPUTHERE) . '">' . BOX_INFORMATION_WHATEVERYOUPUTHERE. '</a> with: <a href="http://www.mtechama.com/support/forums/phpBB2/index.php" target="_blank">Support Forums</a>
mtechama Posted October 19, 2005 Author Posted October 19, 2005 how do I put it in the filenames.php? Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP!
mtechama Posted October 19, 2005 Author Posted October 19, 2005 define('FILENAME_SUPPORT_FORUMS', 'support/forums/phpBB2/index.php'); Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP!
jasper98 Posted October 19, 2005 Posted October 19, 2005 define('FILENAME_SUPPORT_FORUMS', 'support/forums/phpBB2/index.php'); We are not calling FILENAME_SUPPORT_FORUMS in information.php anymore. So no need to define it in filenames.php. All you need to do is replace in information.php: <a href="' . tep_href_link(FILENAME_SUPPORT_FORUMS) . '">' . BOX_INFORMATION_SUPPORT_FORUMS '</a> with: <a href="http://www.mtechama.com/support/forums/phpBB2/index.php" target="_blank">Support Forums</a>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.