Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #626664

    Hi Guys,

    I would love the search icon to be see on desktop and mobiles is this possible?

    Thanks

    Josh

    #626674

    Hey jmorley88!

    Please refer to my post here – https://kriesi.at/support/topic/search-icon-on-mobile-devices/#post-589759

    Best regards,
    Yigit

    #627153

    Thanks Yigit,

    That still is not working for me, here is my functions file:

    <?php
    
    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');
    
    add_shortcode('avia_search', 'get_search_form');
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.only-mobile-menu-search a').removeAttr('href');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');
    
    ?>
    #627658

    Hi,

    Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #627692

    Added

    #627735

    Hey!

    I moved your shortcode from your secondary menu to main menu and search bar now shows up on mobile menu. Please review your website now

    Regards,
    Yigit

    #627819

    Thanks.

    Looks good is it not possible to have it on the top navigation?

    #627821

    Hey!

    Currently no but you can go to Appearance > Menus and move that menu item to the top to display on top of mobile menu

    Regards,
    Yigit

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