vjboc Posted September 22, 2009 Posted September 22, 2009 On the front page there is new products section in the middle with 6 items at the moment http://www.soundwaveproductions.com/online_one/index.php On the top of that table it has text with TABLE_HEADING_NEW_PRODUCTS on it . How do I change or edit that?
Guest Posted September 22, 2009 Posted September 22, 2009 You can change it in includes/languages/english/index.php Find that heading and add your text between the quotes.
vjboc Posted September 22, 2009 Author Posted September 22, 2009 I been looking in there. Here is the code: <?php /* $Id: index.php 1739 2007-12-20 00:52:16Z hpdl $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2007 osCommerce Released under the GNU General Public License */ define('TEXT_MAIN', ''); if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define('HEADING_TITLE', 'FREE SHIPPING! On all orders over $250'); define('TABLE_HEADING_IMAGE', ''); define('TABLE_HEADING_MODEL', 'Model'); define('TABLE_HEADING_PRODUCTS', 'Product Name'); define('TABLE_HEADING_MANUFACTURER', 'Manufacturer'); define('TABLE_HEADING_QUANTITY', 'Quantity'); define('TABLE_HEADING_PRICE', 'Price'); define('TABLE_HEADING_WEIGHT', 'Weight'); define('TABLE_HEADING_BUY_NOW', 'Buy Now'); define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.'); define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.'); define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: '); define('TEXT_SHOW', '<b>Show:</b>'); define('TEXT_BUY', 'Buy 1 \''); define('TEXT_NOW', '\' now'); define('TEXT_ALL_CATEGORIES', 'All Categories'); define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers'); } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'Featured Products'); } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?>
Guest Posted September 22, 2009 Posted September 22, 2009 Ohhhhh. Weird. I have no idea if this will work, but try pasting this define('TABLE_HEADING_NEW_PRODUCTS', ''); right under the define('TEXT_MAIN', ''); Maybe that will get rid of it?? Make sure you back it up first! Nicole
vjboc Posted September 22, 2009 Author Posted September 22, 2009 That did it . Thank you for your time.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.