Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to Change the text in Box Headers?


sjhnjah

Recommended Posts

Thank You for your reply. I have quickly browsed through the wikki site and it seems to have everything about boxes except changing text. However, I will continue to read thoroughly to see if my question is answered, then re post to the appropriate forum. Sorry... :(

A newbie who has learned just enough to be dangerous!

Link to comment
Share on other sites

Hint: Check your catalog/includes/languages/english.php and look for lines like:

 

// categories box text in includes/boxes/categories.php

define('BOX_HEADING_CATEGORIES', 'Categories');

 

:D

Link to comment
Share on other sites

That is where I have been for a day and 1/2 now. Below is an example of what I did. I just put the word "test" in front of the Box named Categories to test the change and it leaves this BOX_HEADING_CATEGORIES in the title to the box header on the Web page www.yourgiftnbasketshop.com

 

 

 

// categories box text in includes/boxes/categories.php

define('BOX_HEADING_testCATEGORIES', 'testCategories');

 

 

Any help would be appreciated. :D

A newbie who has learned just enough to be dangerous!

Link to comment
Share on other sites

You are changing the definition constant name and not the value

 

This is wrong ...

// categories box text in includes/boxes/categories.php 

define('BOX_HEADING_testCATEGORIES', 'testCategories');

 

Use this ...

// categories box text in includes/boxes/categories.php 

define('BOX_HEADING_CATEGORIES', 'testCategories');

Link to comment
Share on other sites

Yes! I finally beat Linda to the punch!  :D  

 

BTW- Linda, You could move this to a more appropriate forum...  :D

 

Well ... if someone would speak up sooner I might pay attention faster ...

 

Thread moved appropriately ... 8)

Link to comment
Share on other sites

Well ... if someone would speak up sooner I might pay attention faster ...

 

If someone had read the whole thread she'd have noticed my first post mentioning reading the stickies and I was being really nice so someone else wouldn't yell at me for being mean. :D :D :D :D :D :D :D :D :D :D

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...