Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1254135

    Is there any add-ons to the child theme for social profile widgets?
    Would like to get the the same look as the twitter icon “Follow on Twiiter” vs the current Faebook “likebox” in a widget.

    #1254526

    Hey rmeehan08,

    I’m not sure I understand what you are referring to, is this part of one of the Enfold demos maybe? If so then please link to the demo in question, or try to explain a bit further what you are looking to achieve.

    Best regards,
    Rikard

    #1254587

    if you like to have the same buttons as Enfold offers for the header-top or the socket – you can create your own shortcode for these by putting this to child-theme functions.php:

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

    then use a text-widget to place the shortcode :[social-bookmarks]
    to have the icons besides each other a bit css is needed:

    #footer .widget .social_bookmarks li {
        clear: right !important;
    }

    The same with share buttons : go to a test-page and style the content element: social share buttons with option “use a custom set”
    go and copy the shortcode from debug mode:
    F.e.:

    
    [av_social_share title='Share this entry' buttons='custom' share_facebook='aviaTBshare_facebook' share_twitter='aviaTBshare_twitter']

    put the shortcode to a textwidget.

    on gdpr ( DSGVO) reasons there is a nice plugin like shariff wrapper will create a widget for it and you can either place the global share buttons or customize them by shortcode f.e.:
    [shariff services="facebook|twitter|mailto" theme="round" borderradius="50"]

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