Hi,
i have a question: How can I add the “Search Form” right next to the cart in my top bar?
Here is the top bar:
http://fs5.directupload.net/images/160329/ntp6muvu.png
Thanks for your help!
Greetings,
Hi oneandonlyeric!
Please try adding following code to Functions.php file in Appearance > Editor
function custom_search_place(){
?>
<script>
jQuery(window).load(function(){
jQuery('li#menu-item-search').children().appendTo("#avia2-menu");
});
</script>
<?php
}
add_action('wp_footer', 'custom_search_place');
Best regards,
Yigit
Hey Yigit,
I added this code there, but nothing happened. Where is the mistake?
Greetings,