VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: flaterik on June 27, 2012, 10:29:43 AM

Title: [SOLVED]Navigation Without Categories
Post by: flaterik on June 27, 2012, 10:29:43 AM
Hi, i want navigate on my Shop without the Category on top of the page.
How to do this? I must edit manually the view?

Thanks for help
Title: Re: Navigation Without Categories
Post by: srajca on June 27, 2012, 11:04:37 AM
hey go to templates/YOURTEMPLATE/html/com_virtuemart/virtuemart/default.php
and find this

# load categories from front_categories if exist
if ($this->categories) echo $this->loadTemplate('categories');

and change it with this

# load categories from front_categories if exist
//if ($this->categories) echo $this->loadTemplate('categories');

Hope it helps
Title: Re: Navigation Without Categories
Post by: balai on June 27, 2012, 11:08:36 AM
There is no need to modify the code.

disable the "Show Children Category" in the VM configuration
Title: Re: Navigation Without Categories
Post by: flaterik on June 27, 2012, 11:38:32 AM
Hi, thanks to everyone
I mix the two solution :)