Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #989131

    Hi lovely Support Team,

    I need to customise the Burgermenu like this Mobilmenu
    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 area

    #989550

    Hey 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,
    Ismael

    #989552

    Hi,
    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. …

    #989713

    Hi 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-menu

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #990333

    Hi 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 Mobilemenu

    #990710

    Hi 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,
    Victoria

    #990716

    It 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.

    #991374

    Hi,

    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,
    Ismael

    #991465

    Hi Ismael,

    thank you for your answer. i will try with css and with some JQuerry.

    #991628

    In 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?

    #991838

    Hi,

    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

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.