I used this code to get the category name listed under the products name on featured products
PHP Code:
' . zen_get_category_name($featured_products->fields['master_categories_id'], $_SESSION['languages_id']) . '
it only gets the name.
this is the code that gets the product name and links it to a page
PHP Code:
<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'cPath=' . $productsInCategory[$featured_products->fields['products_id']] . '&products_id=' . $featured_products->fields['products_id']) . '">' . $featured_products->fields['products_name'] . '</a>
what I want now is to make the category name (which only prints in the screen) to be just like the product name.
Any help please?