Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Little help with Categories box


jororib

Recommended Posts

Posted

Please show me how I can removed the arrow and brackets / -> () / from Categories box

Of this Hardware-> (6) to happen Hardware 6 My link

Thanks in advance.

Posted

Thanks for the reply.

Yes I saw her, but I can not figure out what needs to change.

If possible show me what to change.

Posted

Changing the line

      $categories_string .= '->';

to

 //   $categories_string .= '->';

will get rid of the ->.

 

A few lines later,

        $categories_string .= '& nbsp;(' . $products_in_category . ')';

change to

 //     $categories_string .= '& nbsp;(' . $products_in_category . ')';
       $categories_string .= '& nbsp;' . $products_in_category;

gets rid of the parentheses around the number.

 

Presumably you can handle any other refinements, once you get going. Remember to back up your original files, in case you royally screw up the edits. The original code is preserved as comments // in case you ever want to go back.

  • 2 weeks later...

Archived

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

×
×
  • Create New...