Looking for a css code to show the social share icon into all posts

Hi!

I’m looking for a css code that help me to show the social share icon into all posts.

thanks!

Best regards!

Andrea

Hi Andrea,

Please add this code in the functions.php file of the child theme:

 function x_add_social_sharing() {
    	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_excerpt_end', 'x_add_social_sharing');

Hope this helps.

hi Jade, thank you!

i don’t know why bust the code copied into css in not good. errors appears.

Hello @Negroni,

I think there is some confusion. You are supposed to add the code inside child theme function.php file under Appearance > Editor > function.php. If you haven’t installed child theme, please use following resources to download and install child theme. I have recorded a screencast that you can take a look. https://screencast.com/t/pgOPiI1okekj

https://theme.co/apex/child-themes

Thanks.

Hi Prasant,
i copied the code into function.php.

i don’t see changes in my posts.

my need is to show social share buttons in posts. i’m looking for a code tha automatically insert buttons for all my present and future post.

thank you!

Andrea

i’m looking for someone who help me to add the instagram button into the code:

Instagram

function x_add_social_sharing() {
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_excerpt_end’, ‘x_add_social_sharing’);

i have add Instagram=“true”, the button doesn’t appear

thanks!

Andrea

Hi Andrea,

Regretfully instagram is not included as an options.

http://demo.theme.co/integrity-1/shortcodes/entry-share/

It could be possible with custom development, but this would be outside the scope of support we can offer. You may wish to consult a developer to assist you with this. X is quite extensible with child themes, so there are plenty of possibilities.

Thanks for understanding. Take care!

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