• Resolved jerryb2013

    (@jerryb2013)


    I saw a resolved post on this, but it didn’t give a solution. I’m having the same issue; the share and like links are showing twice on every post using Jetpack with
    Canard child theme — just a few style changes to the theme

    thanks

    • This topic was modified 3 years, 6 months ago by jerryb2013.
    • This topic was modified 3 years, 6 months ago by James Huff.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    Thanks for the report. I cannot seem to be able to reproduce the issue on my end with the Canard theme. Do you experience similar issues when using the parent theme instead of the child theme?

    If the problem is limited to the child theme, could you tell us a bit more about the changes you’ve made?

    Thank you.

    Thread Starter jerryb2013

    (@jerryb2013)

    ah, I see, yes, I added, the footer, a get post to show a reusable block in the them; that seems to be causing the duplication of the Share

    <?php
    		// get reusable gutenberg block:
    		$gblock = get_post( 83 );
    		echo apply_filters( 'the_content', $gblock->post_content );
    ?>
    Thread Starter jerryb2013

    (@jerryb2013)

    I was able to fix by removing the apply filters … thanks

    <?php
    // get reusable gutenberg block:
    $gblock = get_post( 83 );
    echo $gblock->post_content;
    ?>`

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Jetpack shows Share buttons twice’ is closed to new replies.