Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product Box Text


Freedom Fighter

Recommended Posts

Hello.. I was wondering how to make the font for the main catagories in the products box bold. ONLY the main catagories, not the subcatagoires.

 

Thanks,

Alex

 

In the file includesboxescategories.php, change:

// display category name

   $categories_string .= $foo[$counter]['name'];

 

to be:

 

// display category name

   if ($foo[$counter]['parent'] == 0) {

     $categories_string .= "<b>" . $foo[$counter]['name'] . "</b>";

   } else {

   $categories_string .= $foo[$counter]['name'];

   }

 

Although, this will make it hard to tell which category is currently selected, since a category gets bolded when you select it.

 

Aodhan

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...