Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how to remove item count in catagory box?


legendr34

Recommended Posts

Posted

Hello,

 

Anbody know the solution?

 

I want to remove the " -> and (314) "

 

in

 

Hardware-> (314)

 

thank you!

 

I tried searching for SHOW_COUNT in application top, but no good, using MS1

Posted

admin :arrow: Configuration :arrow: My Store :arrow: Show Category Counts, set to false.

 

Hth,

Matt

Posted
admin :arrow: Configuration :arrow: My Store :arrow: Show Category Counts, set to false.

 

Hth,

Matt

 

thank you.

 

does anyone know how to rid of the " -> " in the catagoy box now?

 

:D

  • 9 months later...
Posted

Just add a line to a catalog/includes/configure.php as follow:

 

define('SHOW_COUNTS', 'false');

Posted

If it is just the -> that you want rid of and not the numbers then /includes/boxes/categories.php

 

if (tep_has_category_subcategories($counter)) {
    $categories_string .= '->';
  }

 

either change to

 

if (tep_has_category_subcategories($counter)) {
    $categories_string .= '';
  }

 

or change to

 

/* if (tep_has_category_subcategories($counter)) {
    $categories_string .= '->';
  }*/

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.

Archived

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

×
×
  • Create New...