Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #330141

    I checked the option to show the Social Icons Toolbar in some of my pages, but the toolbar is not showing below the content. How can I fix that?

    Thank you!

    #330632

    Hey factis!

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Cheers!
    Andy

    #330728
    This reply has been marked as private.
    #330777
    This reply has been marked as private.
    #331609

    Hi!

    On your front page you put social icons at the content’s end using Avia Layout Builder. The same needs to be done for the other pages where you want to display these social icons.

    In your WordPress backend go to Enfold->Header Layout->Header size
    There you chose “large”. Instead you can go for “custom pixel value” and set it to 1310px.

    Best regards,
    Andy

    #331674

    Thank you.
    I meen the Sharing Buttons, is it the same as the Social Media Widget? There is a checkbox on the end of the Avia Layout Builder “Show sharing buttons” it works on posts, but not on pages!

    Regards Daniel Kofler

    #331816

    Hi!

    This is a feature from the external Plugin “Jetpack”. Please refer to their customer support.
    However, as far as I know, this sharing feature from Jetpack is only available for blog post, not for pages.

    Cheers!
    Andy

    #335708

    thank you, I understand!

    …but how can I show the Share Buttons like in the post section at te bottom of selected pages?

    Thank you!

    #335962

    Hi!

    Are you using the advance layout builder for pages? You can use this on functions.php:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_page(2) || is_page(3437)) {
    	$content .= avia_social_share_links(array(), false);
    	}
    	return $content;
    }

    Use the is_page conditional if you want to show the share section on specific pages.

    Cheers!
    Ismael

    #342268

    {
    $content .= avia_social_share_links(array(), false);
    }
    return $content;
    }

    So if I just add this part to my functions.php it will show up on all pages as long as I have the share option checked off on that page?

    Thanks

    #343403

    Hi!

    If you want this filter to work on all pages, given that you built the pages using the template builder, remove the wp conditional function:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	$content .= avia_social_share_links(array(), false);
    	return $content;
    }

    Cheers!
    Ismael

    #343447

    Thank you for clearing that up for me!!

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Social Icon Toolbar on pages are not displaying ( v3.0)’ is closed to new replies.