Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #167349

    Can you please advise me on how to add a row of specific social media buttons (and YouTube button) to the footer, as well as a second menu that displays horizontal? I’ve figured out most of what I needed to do, but there are just a few items that are alluding me.

    I also need to add the code for “Google Translate” drop-down select menu” into the header. Do I just edit the header.php page?

    Thank you so much!

    #167460

    Hi fshn2day!

    If you want another menu on the footer area you can go to Appearance > Menus panel. Find Menu Settings then enable Enfold Footer Menu. To add social icons, edit footer.php, find this code:

    wp_nav_menu($args);
    							echo "</div>";

    Below, add this code:

    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    						
    						echo avia_social_media_icons($social_args);

    Add this on your custom.css or Quick CSS to move the social icons:

    #socket .social_bookmarks {
    position: relative;
    left: 50px;
    }

    Yes, you can edit header.php to add the Google Translate.

    Best regards,
    Ismael

    #169000

    Hi Ismael,

    I figured out how to edit the footer.php page and got the layout I needed (I’m trying to match a wireframe), but the only thing I don’t yet know how to do, is to get the Create Account/Login links to work. I could hard code them in the footer file, I guess, but thought I’d ask you if there was some other way.

    Please see the footer: http://otsecure.net/techserv/

    I have the text in the proper location, but the text is not linked. Do you have any suggestions or best practices for this?

    Thank you again! ;-)

    #169145

    Hello!

    You can just add the link http://otsecure.net/techserv/wp-login.php. You can also create a page then add this code:

    http://pastebin.com/EMS5Ze9G

    Change the “http://yourdomain.com&#8221; to your site’s url. You can then use this page’s link as login/logout page.

    Cheers!
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to add social media buttons to the footer and add second menu to footer’ is closed to new replies.