
-
AuthorPosts
-
July 26, 2014 at 9:33 pm #296276
Hi
I am trying to create pages that have the Share Icons Box and then the Comments Box at the end of the page
I insert this code on the functions.php file of my Enfold Child Theme, so i can select Share icons and Comments from the Adavance Layout Builder:——————————————————————————————————————————————————————–
add_action(‘ava_after_content’, ‘avia_add_social_toolbar’, 10, 2);
function avia_add_social_toolbar($id = “”, $context = “”)
{
if($context == “page” || $context == “single-portfolio”)
avia_social_share_links();
}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);
$content .= ‘<div style=”height:1px; margin-top:50px;” class=”hr”></div>’;
return $content;
}———————————————————————————————————————————————————-
But it doesn´t work
What can i do?Paulo
July 29, 2014 at 4:17 pm #297323Hi hamiltonbuchanan!
Unfortunately you can’t add the social icons between two template builder elements. You can only append it at the very bottom of the page. However you can remove the “Comments” element from the template and use this modified function:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2); function avia_add_social_toolbar($id = "", $context = "") { if($context == "page" || $context == "single-portfolio") avia_social_share_links(); } 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); $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; $content .= do_shortcode('[av_comments_list]'); return $content; }
to display the comments template below the social icons. You can see the results here: http://hiperatividade.pt/hiper/
Regards,
PeterJuly 29, 2014 at 9:44 pm #297427Hi Peter
Yes, i thing this will work.
Thank you for your helpPaulo
-
AuthorPosts
- The topic ‘Share Icons Box Before Comments’ is closed to new replies.