-
AuthorPosts
-
July 24, 2018 at 12:15 pm #989131
Hi lovely Support Team,
I need to customise the Burgermenu like this
The best thing would be to build and activate a complete new Menu. But i can do this also with the standard menu i only need to activate and show more items. Or add some additional code into the Burgermenu.
And in the best way i need to activate the footermenus via shortcode.How can i hook into the burgermenu?
——————
admin login details in the private areaJuly 25, 2018 at 8:54 am #989550Hey Rafíyel,
Thank you for using Enfold.
Build the menu as you normally would. You can then manually inspect the items within the burger menu and add the necessary css codes to make it look like the mockup. Unfortunately, this is beyond the scope of support. Please hire a freelance developer or contact our partner, Codeable, if you need additional help.
// https://kriesi.at/contact/customization
Best regards,
IsmaelJuly 25, 2018 at 8:58 am #989552Hi,
thanks for your answer.
isn´t it possible to just activate shortcodes also in the Burgermenu?I´m a bit in PHP and in JQuerry. …
July 25, 2018 at 2:39 pm #989713Hi hunter74,
You might want to use a plugin for that
Or check this thread
https://stackoverflow.com/questions/11403189/how-to-insert-shortcode-into-wordpress-menuIf you need further assistance please let us know.
Best regards,
VictoriaJuly 26, 2018 at 5:57 pm #990333Hi Victoriy,
thanks for your reply- I already use shortcodes in my menu. (in the description textbox) In my Mega Menu (Standard Enfold)
I just want to use them also in the MobilemenuJuly 27, 2018 at 2:01 pm #990710Hi hunter74,
Is Mobilemenu a plugin? Or just the regular menu from Enfold? Anyways, adding this kind of functionality is out of the scope of our support, like Ismael said before. You might want to hire someone to help you with this.
Best regards,
VictoriaJuly 27, 2018 at 2:13 pm #990716It is the standard Enfold Mobilemenu. And i am not getting appreciated – at least I have over 10 Enfold licenses.
Always getting this standard answer – never got help here. I see so many Enfold support topics where peoople help others with stupid questions and mostly it seems to me that it is out of the scope as well. And i also shared a lot good ideas for people here.
Anyway and like always. I need to help me by myself.
July 30, 2018 at 5:06 am #991374Hi,
We do appreciate that you’re using the theme and we thank you for helping the users. However, what you’re asking now requires a lot of modification and we can’t simply spend hours trying to alter how the default mobile menu works. My recommendation to change the menu layout with css should be doable but it will require a lot of css codes. Unfortunately, you can’t render shortcodes inside the mobile menu container by default.
Best regards,
IsmaelJuly 30, 2018 at 10:50 am #991465Hi Ismael,
thank you for your answer. i will try with css and with some JQuerry.
July 30, 2018 at 5:29 pm #991628In another project I clone COntent to various areas using Jquerry. from one div into an other. This could be a solution here as well?
So i can clone the footer Menu and append it to the mobile menu div?$( “div.original_content” ).clone().appendTo( “div.cloned_content” );
What do you think?
July 31, 2018 at 9:06 am #991838Hi,
This could be a solution here as well?
Yes, cloning a container inside the mobile menu should be doable. Something like this should work.
$('.av-burger-menu-main a').on('avia_burger_list_created', function() { if($(this).find('.cloned_menu').length) return; $( "div.original_content" ).clone().addClass('cloned_menu').appendTo( "div.cloned_content" ); });
The “avia_burger_list_created” event will be triggered once the burger menu item list is created.
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.