0

I have "bizarre magento theme". theme have mega menu default.client want to add "view more" functionality in that. for better understand see below imageenter image description here

From Above image you can see brands category, client want to display 5-6 category in the sub category and "view more" functionality. If user click on "view more" than display all the category in the same way display like image.

Any Kind of help will appreciate. Magento Version:1.9.3.4

topmenu.phtml file

<?php
$_menu = $this->getHtml('level-top');
$menuStatus = Mage::getStoreConfig('meigee_categoriesenhanced/options/status');
if ($menuStatus == 1) {
 $navAttr = 'class="nav-wide"';
}
else {
 $navAttr = 'class="nav"';
}
?>
<nav class="nav-container">
 <ul <?php echo $navAttr; ?>>
 <?php echo $_menu; ?>
 <!--<li class="level0 nav-1 first level-top"><a href="<?php echo Mage::getBaseUrl();?>contact" class="level-top" style=""><span>Contact Us</span></a></li>-->
 <!--<li class="level0 nav-1 first level-top"><a href="<?php echo Mage::getBaseUrl();?>catalogsearch/result/?brand=25" class="level-top" style=""><span>Contact Us</span></a></li>-->
 </ul>
</nav> 

here is my topmenu file.

asked Nov 27, 2017 at 13:23

1 Answer 1

0

You have to add a data-toggle of collapse type.

JS FIDDLE DEMO

answered Nov 27, 2017 at 14:24
3
  • Hey Prince thanks for reply , I added topmenu file , can you please tell me where to put condition for view more functionality Commented Nov 28, 2017 at 5:15
  • and also I want to view more link under brands->subcategory->subcategory Commented Nov 28, 2017 at 5:16
  • then I want to put view more link Commented Nov 28, 2017 at 5:16

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.