Tagged: Header Size, Social toolbar
-
AuthorPosts
-
October 4, 2014 at 9:33 am #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!
October 6, 2014 at 12:40 am #330632Hey factis!
Can you please create us a WordPress administrator account? post it here as a private reply.
Cheers!
AndyOctober 6, 2014 at 8:14 am #330728This reply has been marked as private.October 6, 2014 at 11:08 am #330777This reply has been marked as private.October 7, 2014 at 2:41 pm #331609Hi!
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,
AndyOctober 7, 2014 at 3:37 pm #331674Thank 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
October 7, 2014 at 6:09 pm #331816Hi!
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!
AndyOctober 14, 2014 at 6:53 pm #335708thank you, I understand!
…but how can I show the Share Buttons like in the post section at te bottom of selected pages?
Thank you!
October 15, 2014 at 7:28 am #335962Hi!
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!
IsmaelOctober 28, 2014 at 3:50 pm #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
October 30, 2014 at 2:10 pm #343403Hi!
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!
IsmaelOctober 30, 2014 at 3:42 pm #343447Thank you for clearing that up for me!!
-
AuthorPosts
- The topic ‘Social Icon Toolbar on pages are not displaying ( v3.0)’ is closed to new replies.