How to customise navigation drop-menu e.g. 3 or more deep?
Posted: Thu Jul 28, 2011 12:06 am
First of all, my first post here 'hello all!'
Also my first time building with OpenCart (v1.5.0) - cracking bit of kit mind and liking the experience. I just have a few questions with tempting and I'm hoping some kind soul can point me in the right direction:
Multi Level Drops
I'd like my navigation to be three (possibly more) deep e.g.
Shop
> Product Main Category
> Product Sub Cat
I've found some pages in Google (e.g. http://craigmurray.me.uk/opencart-mods/ ... -opencart/ and http://www.shahz.net/web-development/op ... -list.html that address the issue but they don't seem to work in 1.5.
Does anyone know how this can be fixed?
Drops for Other Lists?
Also, I'd like my navigation menu to include drops for the 'Information' and 'Customer Service' <ul> lists. I tried copying and pasting in the parts they are called in the footer e.g.
Put that just give me a PHP error: "Notice: Undefined variable: text_information" so presumably I need something else in there too?
As you've no doubt gathered I'm not experienced with PHP, being more of a front end chap so any pointers greatly appreciated.
Thanks - Ben
Also my first time building with OpenCart (v1.5.0) - cracking bit of kit mind and liking the experience. I just have a few questions with tempting and I'm hoping some kind soul can point me in the right direction:
Multi Level Drops
I'd like my navigation to be three (possibly more) deep e.g.
Shop
> Product Main Category
> Product Sub Cat
I've found some pages in Google (e.g. http://craigmurray.me.uk/opencart-mods/ ... -opencart/ and http://www.shahz.net/web-development/op ... -list.html that address the issue but they don't seem to work in 1.5.
Does anyone know how this can be fixed?
Drops for Other Lists?
Also, I'd like my navigation menu to include drops for the 'Information' and 'Customer Service' <ul> lists. I tried copying and pasting in the parts they are called in the footer e.g.
Code: Select all
<h3><?php echo $text_information; ?></h3>
<ul>
<?php foreach ($informations as $information) { ?>
<li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
<?php } ?>
</ul>
As you've no doubt gathered I'm not experienced with PHP, being more of a front end chap so any pointers greatly appreciated.
Thanks - Ben