Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode on all single posts

Put Shortcode/Global Block at the bottom of all single posts

function share_for_posts( $content ) {
  if ( is_singular('post') ) {
    echo do_shortcode('[cs_gb id=1969]');
  }
}

add_action('x_before_the_content_end', 'share_for_posts');