Social media sharing button's on all blog post's

Hello, I know there is a social media sharing bar for blog post in X. Where to find it?

Thanks

Hi There,

The option is only available for Portfolio items not for the Blog post.
You can use any third party plugins to add a social share to all blog page.
Here are a few examples of free plugins that might be helpful.


You can also search for other options too.

Thanks

That is strange, last year I have this site and there the social sharing is native on blog post. I can’t find anymore how I did that

https://knip-t.nl/daar-sta-ik-dan-midden-op-de-advertentie/

Hi there,

The social share option is not native to any stack of X for blog posts but you can have it added by adding some custom code to the functions.php file of the child theme.

Please add this code:

function x_add_social_sharing ( $content ) {
	if ( is_singular('post') ) {
		echo do_shortcode('[x_share title="Share this Post" facebook="true" twitter="true" google_plus="true" linkedin="true" pinterest="true" reddit="true" email="true"]');
	}
}

add_action('x_before_the_content_end', 'x_add_social_sharing');

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.