VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: modernmagic on March 27, 2024, 21:41:22 PM

Title: Category Title not showing on some pages
Post by: modernmagic on March 27, 2024, 21:41:22 PM
I can't figure out why the category title is appearing on some pages but not on others.  The menu-itmes and vm-category settings all appear to be the same.

Here is the url with the missing category title:  https://retaildisplayusa.com/floor-displays/mannequins

J 4.4.3
VM 4.2.0
Title: Re: Category Title not showing on some pages
Post by: Roderic on April 01, 2024, 00:24:44 AM
One is categories view and the other is category view. Have a look at components/com_virtuemart/views/category/tmpl/default.php
Title: Re: Category Title not showing on some pages
Post by: modernmagic on April 02, 2024, 20:45:19 PM
Thank you I found the code:

<?php if (!empty($this->category->category_name)) { ?>
<h1><?php echo vmText::_($this->category->category_name); ?></h1>
<?php ?>