Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1475001

    I’ve enabled the social buttons and the share buttons for the blog but they’re not showing:

    Here’s the blog post – https://gregward.com/2025/01/12/aligning-purpose-with-profit/

    and here’s what I have enabled –

    • This topic was modified 1 month, 1 week ago by yifatcohen.
    #1475013

    Hey yifatcohen,

    Are you using the Layout Builder to create your posts? If so, then all content needs to be added to them manually.

    Best regards,
    Rikard

    #1475042

    Yes, I’m using the Avia layout builder.
    How do I add it manually? is there a widget?

    #1475043

    Hi,

    Thank you for the update.

    You can use the Social Buttons element from the Content Elements tab of the Advance Layout Builder (ALB). Let us know of the result.

    Best regards,
    Ismael

    #1475064

    Thanks.
    I only see the “Share This Entry” on the bottom.

    What about Author profile, date.. and follow me ?

    #1475066

    Hi,

    You can use the Post Metadata for that.

    Best regards,
    Rikard

    #1475067

    Thanks Rikard. Is there also a way to show all my social icons that takes them to my own social media accounts?

    #1475074

    Hi,

    Thank you for the update.

    You can manually create a social icon list using the Icon element, or add this custom shortcode in the functions.php file:

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

    In a Text or Code Block element, add this shortcode:

    [av_social_bookmarks]
    

    Best regards,
    Ismael

    #1475737

    Thanks Ismael.
    That worked – somewhat.
    It’s only showing the first network:

    even though I have them all listed:

    Also, is there a way to control the colors?

    #1475823

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .widget ul.social_bookmarks {
        display: inline-flex;
        gap: 0px 10px;
    }
    
    #top .widget ul.social_bookmarks li {
        border: none
    }

    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 01 26 at 8.42.43 AM

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.