Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Can anyone get rid of "n" and other text on top catalog page


bombaclot

Recommended Posts

Posted

look for this in catalog/products_new.php and comment out or remove

 

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

 

to comment out use this // so it looks like

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

Posted
please look at http://aquavids.com/aquashop/index.php?cPath=26 and tell me how to get rid of "n" and how to change the table heading text like getting rid of the "+" next to "Product Name+" and changing " TABLE_HEADING_IMAGE " etc.

 

Where is this page to make the changes within oscommerce?

 

Thanks a million!

 

The + next to Product Name is there to show that you have that table ordered by that colum, If you click on price you will see it change to that colum and it will be ordered by that too.

 

As for the

TABLE_HEADING_IMAGE

 

Open catalog\includes\languages\english.php search for

define('TABLE_HEADING_PRODUCTS', 'Product Name');

 

About 2 lines above that you should have

define('TABLE_HEADING_IMAGE', '');

 

If you dont then add it in, If you make it exact same as above then there wont be a title, in between the last 2 quote marks you can add some text to describe that colum IE so it would look like

 

define('TABLE_HEADING_IMAGE', 'Image');

 

I am not sure how you would remove the + but why not do what I did and just add a space to the end of the word so instead of it being like

define('TABLE_HEADING_PRODUCTS', 'Product Name');

it would be

define('TABLE_HEADING_PRODUCTS', 'Product Name ');

 

Notice the space at the end of name.

 

Add that space to the end of one

Archived

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

×
×
  • Create New...