Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #357255
    #357805

    Hi COLORIT!

    Try this out.

    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( array( 1, 2, 3 ) ) ) { $content .= avia_social_share_links(array(), false); }
    	$content .= '';
    	return $content;
    }

    Where 1, 2, 3, etc are the ID’s of the pages you want it to display on.

    Best regards,
    Elliott

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