Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #104596
    Ana
    Participant

    Is there a way to move the social media icons and search bar from the top of the page to the bottom?
    Thanks!

    #104614
    wensolutions
    Participant

    Hello @ana,

    We will provide you a step by step guide to achieve your feature request.

    First, you will have to create a child theme for the theme you are currently using. To know more about the child theme please visit, http://catchthemes.com/blog/create-child-theme-WordPress/

    Now that you have created a child theme so add the below given code on your child theme’s functions.php file

    function wen_business_pro_modify_top_header(){ 
    
    	remove_action( 'wen_business_action_before_header', 'wen_business_header_top_content', 5 ); 
    	add_action( 'wen_business_action_after', 'wen_business_header_top_content', 5 ); 
    }
     
    add_action('init', 'wen_business_pro_modify_top_header' );

    Finally, save the file and reload your browser.

    Hope it helps.
    Regards.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Social Media Icons and Search Bar’ is closed to new replies.