• Resolved r1nk

    (@r1nk)


    Hello,

    I would like to manually insert this code for the right hand side

    <div class="header-search "><div class="et-search-trigger"><a class="popup-with-form" href="#searchModal"><i class="fa fa-search"></i> <span>Search</span></a> </div></div>

    It’s a search popup function. May I know where can I insert this code? If can’t from wordpress dashboard, then perhaps you can point me out from the source code file.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Rui Guerreiro

    (@takanakui)

    @r1nk

    In the header or in the menu panel?

    Thread Starter r1nk

    (@r1nk)

    In the header.

    One more thing, this plugin don’t have build in swipe left/right to open the mobile menu right?

    Plugin Author Rui Guerreiro

    (@takanakui)

    Thanks.

    No the menu panels don’t work with the swipe.

    There is a new filter that we added in this last version to replace the Left or Right header content.

    Add the code below to the functions.php of your child theme.
    Format the desired content that you want to return.

    /*WP Mobile Menu Rigth Menu Content Filter*/
    function my_custom_html_right_menu() {
         //Maybe modify $example in some way.
         return '<div class="mobmenu-right-bt">XX</div>';
    }
    
    add_filter( 'mm_right_menu_filter', 'my_custom_html_right_menu' );

    .

    Let me know if it works.

    Plugin Author Rui Guerreiro

    (@takanakui)

    Will close the topic for now.
    Let me know if you need further help with this.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Manually adding some html markup for right side’ is closed to new replies.