Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Menu question: "Category Link -> (2)" to just "Category Link"?


Recommended Posts

The category links have a little text arrow and list the quality of products in that category. Is there any way to change, for example:

 

Gifts & Misc-> (5)

 

to just:

 

Gifts & Misc

 

?

 

 

Simple: Log in to your admin/configuration/my store -> Show Category Counts -> false

 

This will also make your shop faster.

Link to comment
Share on other sites

Simple: Log in to your admin/configuration/my store -> Show Category Counts -> false

 

This will also make your shop faster.

 

Thank you, this got rid of the count, but there's still a text arrow "Gifts & Misc ->" I can't find which file contains this because when I search for -> I get the results for script <!-- comments -->

Link to comment
Share on other sites

/catalog/includes/boxes/categories.php

 

Change:

 

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

To:

 

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

BACKUP THE FILE FIRST!!!

 

You break it - You bought it...

:blush:

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Thank you, this did the trick!

 

/catalog/includes/boxes/categories.php

 

Change:

 

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

To:

 

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

BACKUP THE FILE FIRST!!!

 

You break it - You bought it...

:blush:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...