VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: arnold.pietersen on September 21, 2014, 17:06:37 PM

Title: Category Title Not Showing
Post by: arnold.pietersen on September 21, 2014, 17:06:37 PM
Hi

I just wonder if someone can help me.

My Category layout view shows the subcategory names, but not the Category name itself.

http://develope.wwwssr1.supercp.com/index.php/shop/accessories

I use the categories.php file.

Please assist

Kind Regards

ARNOLD
Title: Re: Category Title Not Showing
Post by: GJC Web Design on September 21, 2014, 23:41:06 PM
yes - there is no title in the template

there is an empty
<div class="category_description"> </div>

so try adding your  cat names in the desc  e.g. <h1>Accessories</h1> of the cat


or add in the template

<div class="category_name">
   <h1><?php echo $this->category->category_name; ?></h1>
</div>