How to enable these features in default page post? I’m using PRO (with INTEGRITY stack) and I just found reference to X, not PRO.
Hello There,
Thanks for writing in! This reference url (http://demo.theme.co/integrity-1/shortcodes/entry-share/) is a demonstration of the entry share element. The Entry share can be found when you edit a page in Pro. If you want to add entry share at the end of every single post items, assuming that you have a pro child theme, please add the following code in your child theme’s functions.php file
// 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');
// =============================================================================
We would loved to know if this has work for you. Thank you.
1 Like