diveman05 Posted September 22, 2009 Posted September 22, 2009 here is my site: http://aquatictradingco.com/oscommerce/cat...ex.php?cPath=43 i want to change the title of the table that says table_heading_new_products to Featured Products, where can i find that code, i know its easy but i have been overlooking it for about the past 3 hours!
FIMBLE Posted September 22, 2009 Posted September 22, 2009 If its standard new_products module catalog / includes / languages / english / index.php Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
diveman05 Posted September 22, 2009 Author Posted September 22, 2009 If its standard new_products modulecatalog / includes / languages / english / index.php Nic i didn't see it but heres the html maybe you can show me where i'm missing it. Thanks! <?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', 'Welcome to Aquatic Trading Company\'s online ordering page. You will find categories to the left where you can select what you are looking for including our new What You See is What You Get (WYSIWYG) section. All of the stock is updated daily so only the available stock is showing. This will help ensure you a very high fill rate percentage . If you have any questions about online ordering or any products feel free to give us a call, 954-781-7699, anytime! <p></p>Below you will find this weeks specials </body> ' ); if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define('HEADING_TITLE', 'Let\'s See What We Have Here'); 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'); } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'Welcome to Aquatic Trading Company'); } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?>
Ken44 Posted September 22, 2009 Posted September 22, 2009 Hi Brian Try catalog\includes\languages\english\products_new.php However the standard the define is define('HEADING_TITLE', 'New Products'); not TABLE_HEADING_NEW_PRODUCTS ???? Regards Ken
diveman05 Posted September 22, 2009 Author Posted September 22, 2009 Hi Brian Try catalog\includes\languages\english\products_new.php However the standard the define is define('HEADING_TITLE', 'New Products'); not TABLE_HEADING_NEW_PRODUCTS ???? Regards Ken Ken, thanks for the input, i gave it a try and nothing still, i dont know how it got that heading and i think thats why i've been so lost is because i can't find it anywhere! Thanks though
FIMBLE Posted September 22, 2009 Posted September 22, 2009 his is probably because its been deleted add this to you catalog / includes / languages / english / index.php define('TABLE_HEADING_NEW_PRODUCTS' , 'Your text here'); Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
diveman05 Posted September 22, 2009 Author Posted September 22, 2009 his is probably because its been deleted add this to you catalog / includes / languages / english / index.php define('TABLE_HEADING_NEW_PRODUCTS' , 'Your text here'); still no luck! this OS is gonna kill me!
FIMBLE Posted September 22, 2009 Posted September 22, 2009 Try adding it in your english.php see if that does it then Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
Recommended Posts
Archived
This topic is now archived and is closed to further replies.