Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #337967

    Hi,

    I have tried plugins such as digg-digg and tweet, like plus one.
    The problem is that wherever I used a color section at the top of a page the buttons are not displayed.
    How this can be solved?

    Thank you.

    #338104

    Hi eyeweb!

    Thank you for using Enfold.

    Please try these plugins:

    https://wordpress.org/plugins/wp-socializer/installation/
    https://wordpress.org/plugins/socialize/installation/

    You can use the plugin’s shortcode.

    Regards,
    Ismael

    #338223

    Hi,

    Both plugins are also not displayed on pages.
    I would rather not use the short code option, because I will need to put it manually at every page.

    Is there another solution?

    #339702

    Hi!

    Try adding this at the very end of your theme / child theme functions.php file:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	$content .= "PUT PLUGIN PHP FUNCTION OR SHORTCODE HERE"
    	return $content;
    }

    You’ll need to use do_shortcode in case of shortcode inclusion.

    Cheers!
    Josue

    #339960

    Hi Josue,

    I tried it but it did not work. I probably did something wrong.
    Can you please write me an example with a short code?

    Kind regards,

    #340116

    Hi!

    Please try as following

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	$content .= do_shortcode('[FACEBOOK-SHORTCODE]');
    	return $content;
    }

    Best regards,
    Yigit

    #340179

    Thank you Yigit.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Facebook like plugin does not show on pages’ is closed to new replies.