An open API service indexing awesome lists of open source software.

https://github.com/macopedia/maco-nav-menu

Configurable navigation menu for Magento CE
https://github.com/macopedia/maco-nav-menu

Last synced: 11 months ago
JSON representation

Configurable navigation menu for Magento CE

Awesome Lists containing this project

README

          

Macopedia Easymenu
==================

Navigation menu for Magento configurable from the backend (admin panel).

If you set the cache lifetime for a block, e.g.
```

43200

```

Generated menu will not have an "current-page" class for the anhor.
As we don't want it to be cached.
You can still add this class by some little js magic:

```
$('#nav a').each(function () {
var self = $(this);
if (window.location.href === self.attr('href')) {
self.addClass('current-page');
}
});
```