Guest Posted July 8, 2005 Posted July 8, 2005 See http://www.oscommerce.com/osCommerce22ms2/....php?cPath=1_17 I want to remove the 'Let's See What We Have Here' from the page'. Could anyone please tell me how to do it? Thanks in advance. :-"
Guest Posted July 8, 2005 Posted July 8, 2005 I would also like to find out how to remove the guest login bit from directly underneath it too... as they will be asked to login before they can buy. See HERE!
njdude Posted July 8, 2005 Posted July 8, 2005 See http://www.oscommerce.com/osCommerce22ms2/....php?cPath=1_17 I want to remove the 'Let's See What We Have Here' from the page'. Could anyone please tell me how to do it? Thanks in advance. :-" <{POST_SNAPBACK}> This question has been answered many, many times. I know that the built in search is not very good, but google works. In google type: site:www.oscommerce.com/forums "Have Here" and you will find your question answered many times. I am a newbie here, but I hate to ask questions that have been replied to dozens of times. I had the same question (and questions to be) you did (will have), but I did not want to waste anyone's time unless I was 100% sure that it was not answered. Do more then a few minutes of search and you will learn a lot.
doodah Posted July 8, 2005 Posted July 8, 2005 PLease help, this is killing me lol.? :'( <{POST_SNAPBACK}> search for it, it is there :blink:
WiseWombat Posted July 8, 2005 Posted July 8, 2005 search for it, it is there :blink: <{POST_SNAPBACK}> take a look at about line 29 in catalog/includes/english/index.php ( WARNING ) I think I know what Im talking about. BACK UP BACK UP BACK UP BACK UP
Guest Posted July 8, 2005 Posted July 8, 2005 Thanks guys, believe it or not I have been searching for hours, even days. I was just at the end of my teather. I'll go take a look the now, thanks for the reply.
Guest Posted July 8, 2005 Posted July 8, 2005 Sorry guys, tried commenting it out and delting the following an it doesn't change anything. if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { //define('HEADING_TITLE', 'Let\'s See What We Have Here'); 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', 'Welcome to Riteclik Computers'); } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?> I end up getting... HEADING_TITLE in it's place on the main page. :(
WiseWombat Posted July 8, 2005 Posted July 8, 2005 Try thisif ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define(''); 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', ''); } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?> :D <{POST_SNAPBACK}> ( WARNING ) I think I know what Im talking about. BACK UP BACK UP BACK UP BACK UP
hubcat Posted July 8, 2005 Posted July 8, 2005 Undo your changes and add this contribution: http://www.oscommerce.com/community/contributions,1908 It will replace "let's see..." with whatever the category/subcategory name is. Works well and is an easy install. Good Luck :D Adrienne
WiseWombat Posted July 8, 2005 Posted July 8, 2005 if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define('HEADING_TITLE', ''); 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', ''); } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?> Sorry I deleted to much on the first define line this should work. ( WARNING ) I think I know what Im talking about. BACK UP BACK UP BACK UP BACK UP
Recommended Posts
Archived
This topic is now archived and is closed to further replies.