Hi there,
Before I am asking my question, I want to say that I read the Nested Pages (AKA Menu Maker) documentation. Only I do not understand everything in it.
I would like some help to create the following.
If I am making a website for a client with his menu-items in the navigation and for example he has a dropdown menu named services and has child-items named for example page1, page2, page3 and the only thing I want my client to create is a extra page if he wants this in the future for example page4.
I have used the following tag
<?php require_once( 'couch/cms.php' ); ?>
title='services' clonable='1' nested_pages='1'>
et cetera...
In the admin panel everything works fine
But where in the navigation code must I put the embed tag of the snippet?
ps. I am using bootstrap if that a problem.
If there is somebody that can give me a simple example so that it will work with bootstrap, that will be perfect.
I used to work with joomla in the past but I hated that my html markup was not clean and was full of stuff that I did not use.
I love CouchCMS and I tested it and liked it. But know a client asked me what if in the future he wants to add a page? I could do it for him, but it will be better if he can do this.
So if somebody can give me a easy explanation/tutorial that would be great.
Before I am asking my question, I want to say that I read the Nested Pages (AKA Menu Maker) documentation. Only I do not understand everything in it.
I would like some help to create the following.
If I am making a website for a client with his menu-items in the navigation and for example he has a dropdown menu named services and has child-items named for example page1, page2, page3 and the only thing I want my client to create is a extra page if he wants this in the future for example page4.
I have used the following tag
<?php require_once( 'couch/cms.php' ); ?>
title='services' clonable='1' nested_pages='1'>
et cetera...
In the admin panel everything works fine
But where in the navigation code must I put the embed tag of the snippet?
ps. I am using bootstrap if that a problem.
- Code: Select all
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Services<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Page1</a></li>
<li><a href="#">Page2</a></li>
<li><a href="#">Page3</a></li>
</ul>
</li>
</ul>
If there is somebody that can give me a simple example so that it will work with bootstrap, that will be perfect.
I used to work with joomla in the past but I hated that my html markup was not clean and was full of stuff that I did not use.
I love CouchCMS and I tested it and liked it. But know a client asked me what if in the future he wants to add a page? I could do it for him, but it will be better if he can do this.
So if somebody can give me a easy explanation/tutorial that would be great.