Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Getting rid of "let's see what we have here"


nivo

Recommended Posts

Posted
where do I find the code to change this? or delete it?

 

www.customtubesinc.com/catalog

 

You can find at this path

 

catalog/includes/languages/english/index.php

 

at line 10

 

define('HEADING_TITLE', 'Let\'s See What We Have Here');

 

You can change that to

 

define('HEADING_TITLE', '');

 

which will result into blank.

 

enjoy....

Posted
You can find at this path

 

catalog/includes/languages/english/index.php

 

at line 10

 

define('HEADING_TITLE', 'Let\'s See What We Have Here');

 

You can change that to

 

define('HEADING_TITLE', '');

 

which will result into blank.

 

enjoy....

 

 

Thank you

Posted

If you want to just change that text, then look in *catalog*/includes/languages/english/index.php

 

If you want to delete it, then that text is a variable called HEADING_TITLE on the *catalog*/index.php file.

The line looks something like this:

<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

That line shows up 3 times on this file. The last time is how your home page gets it's title, the other two times are for the parent category pages and the child category pages. You can comment out this line so it looks like this:

<!-- <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> -->

Commenting it out will delete it from you pages.

 

There are also contributions to do stuff with HEADING_TITLE. You can do a search for "HEADING_TITLE" in the contributions to see if someone has done something with the heading titles.

If I'm giving advice, it is based on what path I would take to fix your problem. My path may be wrong.

Posted
If you want to just change that text, then look in *catalog*/includes/languages/english/index.php

 

If you want to delete it, then that text is a variable called HEADING_TITLE on the *catalog*/index.php file.

The line looks something like this:

<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

That line shows up 3 times on this file. The last time is how your home page gets it's title, the other two times are for the parent category pages and the child category pages. You can comment out this line so it looks like this:

<!-- <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> -->

Commenting it out will delete it from you pages.

 

There are also contributions to do stuff with HEADING_TITLE. You can do a search for "HEADING_TITLE" in the contributions to see if someone has done something with the heading titles.

 

Commenting it out worked great. the other way I was running into a table stretch issue? TABLE_NO_TEXT and Choose_option... title

Archived

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

×
×
  • Create New...