Hi Guys,
I would love the search icon to be see on desktop and mobiles is this possible?
Thanks
Josh
Hey jmorley88!
Please refer to my post here – https://kriesi.at/support/topic/search-icon-on-mobile-devices/#post-589759
Best regards,
Yigit
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');
?>
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
Added
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
Thanks.
Looks good is it not possible to have it on the top navigation?