prestatent Posted December 5, 2013 Share Posted December 5, 2013 Prestashop 1.5.4.1 Hi Is there a way to have CMS sub-categories show in a similar way to Categories/Sub-Categories in the left-hand column block? Thanks. Link to comment Share on other sites More sharing options...
vekia Posted December 5, 2013 Share Posted December 5, 2013 unfortunately i don't know any module with this feature. you can try to create menu like this menually with code like: <div id="example" class="categories_block_left block"> <h4 class="title_block">Test</h4> <div class="block_content"> <ul class="tree dynamized" style="display: block;"> <li><span class="grower CLOSE"> </span><a href="ROOT-CMS" title="">ROOT</a><ul style="display: none;"> <li><a href="cms1" title="">CMS 1</a></li> <li><a href="cms2" title="">CMS 2</a></li> <li><a href="cms3" title="">CMS 3</a></li> </ul> </li> <ul> </div> </div> Link to comment Share on other sites More sharing options...
prestatent Posted December 5, 2013 Author Share Posted December 5, 2013 Thanks Vekia I thought there may be some way to configure this via Backoffice, but if manual coding is required I'll do this. Cheers. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now