• Resolved JLesacher

    (@jlesacher)


    Hi !

    Thanks for the plugin, it’s really easy and awsome.
    I’m experiencing only one problem.

    When I check show on posts in the admin panel, everything is fine and the counters of twitter and google + display a positive number.

    Unfortunatly I need to display the ssba plugin in a box after the content and the default location doesn’t suits my needs. For this reason I’m using the do_shortcode function in my template file.
    In this case the counters of twitter and google+ are stuck to 0 on every posts.
    Facebook and Linkedin counters are still working fine though.
    What am I missing ?

    Thanks in advance for your time,
    Johann

    https://wordpress.org/plugins/simple-share-buttons-adder/

Viewing 1 replies (of 1 total)
  • Thread Starter JLesacher

    (@jlesacher)

    Hi !

    I found a solution in another related thread.
    Thanks to Piotr Bieszk :

    In version 4.8 replace existing line 717 of simple-share-adder.php

    $urlCurrentPage = (isset($atts[‘url’]) ? $atts[‘url’] : ssba_current_url());

    with

    if (get_permalink($post->ID) != “”) {
    $urlCurrentPage = get_permalink($post->ID);
    } else {
    $urlCurrentPage = (isset($atts[‘url’]) ? $atts[‘url’] : ssba_current_url());
    }

    => Worked for me

    Bisous,
    Johann

Viewing 1 replies (of 1 total)
  • The topic ‘Including shortcode in HTML breaks share count’ is closed to new replies.