Jump to content

Question

Posted

Hello everyone. Good Day,

I have a little bit problem in adding some nav-menu item on client page.

The scenario is : I wanna add some menu on client page. The nav-menu is using dropdown style.

I have looked up at plugin_action table on the DB. I look at the support menu plugin for example. That plugin is using serialize array to make the dropdown menu.

 

What i wanna ask is, can i make dropdown menu without using the code style of support manager plugin on navigation.php file?

If i have to use the code style of support manager, would anybody help me please to explain the way it does?

 

Sorry for the inconvenience. Thanks before for anybody that want to help.

1 answer to this question

Recommended Posts

  • 0
Posted

In your template file, search the li of the nav and add the fallwing code to your template, you need to edit links and navigation names

 

<li class="dropdown">
	<a href="#" class="dropdown-toggle" data-toggle="dropdown">
		<i class=""></i>Link 1<b class="caret"></b>
	</a>
	<ul class="dropdown-menu">
		<li><a href="http://URL_HERE/"><i class=""></i> Sub Link 1</a></li>
		<li><a href="http://URL_HERE/"><i class=""></i> Sub Link 2</a></li>
	</ul>
</li>

 

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...