I know I’ve done this easily in previous sites, but can’t find it. Need to add “share this Post” and icons to bottom of each post.
Hi there,
Please add this code in the functions.php file of the child theme:
// Add Social Sharing after the single post content
// =============================================================================
function x_add_social_sharing ( $content ) {
if ( is_singular('post') ) {
echo do_shortcode('[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');
thank you. I thought I was missing something in the customizer
You’re welcome.
Is there a reason there is no “instagram” social link on regular social links, like the footer and header area?
Hi There,
Thank you for your feedback. Our Entry Share shortcode currently allows Facebook, Twitter, Google plus, Linked in, Pinterest, Reddit and Email as you can see here (http://demo.theme.co/integrity-1/shortcodes/entry-share/).
This is something we can add to our list of feature requests. This way it can be taken into consideration for future development. All of these items are discussed with our team internally and prioritized based on the amount of interest a particular feature might receive.
Thanks!
Thanks, there is a tread now towards instagram, and, as a designer my work looks great on instagram
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.