Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Let's See What We Have Here


Guest

Recommended Posts

Hello again,

 

How comes when I click on a Category I get the following message rather than the Category name:

 

Let's See What We Have Here

 

 

Cheers

 

Bacon

Link to comment
Share on other sites

I just re-read my message and it was just a bit vague... To be more accurate, when I click on a category rather than the name of the category showing on the main page i get the wording: Let's See What We Have Here

 

Does anyone know how to amend this so that I see the Category name rather than this message.

 

Aswell I would like to get rid of the Header image as well. Is this possible??

 

Thanks in advance

 

Bacon

Link to comment
Share on other sites

in catalog/includes/languages/english/index.php at the bottom is this code

 

define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
} elseif ($category_depth == 'top') {
 define('HEADING_TITLE', 'What\'s New Here?');
} elseif ($category_depth == 'nested') {
 define('HEADING_TITLE', 'Categories');
}

 

change to

 

define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
} elseif ($category_depth == 'top') {
 define('HEADING_TITLE', 'What\'s New Here?');
} elseif ($category_depth == 'nested') {
define('HEADING_TITLE', $categories['categories_name']);
}

 

 

and change

if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) {
 define('HEADING_TITLE', 'Let\'s See What We Have Here');

 

 

to this

 

if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) {
 define('HEADING_TITLE', $categories['categories_name']);

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Link to comment
Share on other sites

I spent two hours trying to figure this one out. Now I see what I was missing. I should have started searching here instead of in the code. I was in the right place, but I missed a step. Thanks so much for this. :D

Link to comment
Share on other sites

Hey Dakota,

 

You're correct about the search in Invision. Small words and searches for "quotations" do not work.

 

It's funny how your can enter

 

"Let's See What We Have Here"

 

into the Google search engine and the very first hit I get is a link to the osCommerce forum with the solution. :lol:

 

Tom

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...