Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #869346

    Ahoy, is there a shortcode for the social icons in the header? I would like to embed them into a footer column as well? I tried using a third party button but they don’t display the same.

    Please advise

    #869605

    Hey mcraig77,

    You can add them in Theme options in the Footer tab
    Image 2017-10-27 at 16.05.27.png

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #879938

    Hi Victoria,

    I need this in the the footer not socket. Please advise.

    #880076

    Hi,

    You can use text widget and paste this code https://pastebin.com/dbd0TWZm
    just replace the links/url. Hope this helps.

    Best regards,
    Nikko

    #880492

    I went ahead and pasted that code. Only Linked in shows…

    Please Advise

    #880602

    Hi,

    Can you give us temporary admin access? so we can check further.

    Best regards,
    Nikko

    #882077

    Attached

    #882482

    Hi,

    Thank you for the info.

    We added the following code in the functions.php file.

    add_shortcode( 'avs_social_icons', 'avs_social_icons_callback' );
    function avs_social_icons_callback() {
    	$social_args 	= array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    	return avia_social_media_icons($social_args, false);
    }

    Please add a Text widget, switch to “Text” mode then add this shortcode.

    [avs_social_icons]
    

    Afterwards, go to the Quick CSS field then use the following css code.

    .widget .social_bookmarks li {
        clear: none;
    }

    Best regards,
    Ismael

    #882484

    OK, I’m to use a snippet plugin to add the code to the functions.php rather than adding it directly to the .php

    Can you remove that and I will add,

    Thanks,

    #882524

    Hi,

    We removed shortcode from the functions.php file. You can now add it to the snippet plugin.

    Best regards,
    Ismael

    #885802

    That looks good, anyway to have a circle overlap them instead of a square like the header?

    #885940

    Hi,

    You can set the border-radius property to 100%.

    #top .social_bookmarks li a {
        border-radius: 100%;
    }

    Best regards,
    Ismael

    #886227

    Thanks!

    #886276

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Social Icons Footer Column Shortcode’ is closed to new replies.