Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I remove product quantities and arrows!!!!!???


bhannon

Recommended Posts

Posted
How do I remove product quantities

 

Admin panel --> configuration --> my store --> Show Category Counts --> false

 

and arrows!!!!!???

 

open file :

includes/boxes/categories.php

 

change this :

if (tep_has_category_subcategories($counter)) {

$categories_string .= '->';

}

 

to this :

if (tep_has_category_subcategories($counter)) {

$categories_string .= '';

}

Posted
Admin panel --> configuration --> my store --> Show Category Counts --> false

open file :

includes/boxes/categories.php

 

change this :

if (tep_has_category_subcategories($counter)) {

$categories_string .= '->';

}

 

to this :

if (tep_has_category_subcategories($counter)) {

$categories_string .= '';

}

 

Thank you Corrina, you are a goddess!!

Archived

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

×
×
  • Create New...