Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

removing " -> " arrow


hunter69

Recommended Posts

Hi guys

 

How do I remove the arrows ->

from the catagories box? it only shows up when their are sub catagories but i don't want it there at all!

I have found the includes/boxes/catagories.php file but can't figure out what to do or what to change.

Link to comment
Share on other sites

find (41)

 

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

 

and comment out

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

never mind guys I figured it out

 

in case anyone else wants to know, here is what i did

 

 

in the catalog/includes/boxes/catagories.php

changed

 

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

 

 

to

 if (tep_has_category_subcategories($counter)) {
     $categories_string .= '</b>';

 

 

this site is great to learn this stuff

Link to comment
Share on other sites

  • 9 months later...

never mind guys I figured it out

 

in case anyone else wants to know, here is what i did

 

 

in the catalog/includes/boxes/catagories.php

changed

 

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

 

 

to

 if (tep_has_category_subcategories($counter)) {
     $categories_string .= '</b>';

 

 

this site is great to learn this stuff

 

Hi

This solution only works for entrance, when you enter a subcategory it refreshes still showing the '->'

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...