New Landing How can we help? Cardinal Social Sharing on every page

Viewing 8 posts - 1 through 8 (of 8 total)
  • Posted in: Cardinal
  • #245182
    WineDesignNL
    Member
    Post count: 204

    Hi There,

    I see the social sharing option for post, but not for pages. Is there a way I can activate this for every page? For example:
    http://www.huisunie.nl/conditie/visie-op-conditie/voordelen-van-je-huis-is-goede-verkoop-conditie/

    As you can see I added `[social size=”standard” type=”twitter,facebook,youtube,googleplus”]’ but it only links to the pages I put in the Theme Options. Also there is some grey ‘clutter’ around it, that i don’t find very attractive.

    Thanks allot!

    #245206
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please paste this code at functions.php of child theme.
    add_action( 'sf_page_content_end', 'sf_post_share', 10 );
    Thanks
    Mohammad

    #245227
    WineDesignNL
    Member
    Post count: 204

    Hi Mohammed,

    This worked! Thanks! Can you please tell me where I can change the ‘Share This’ in my own language? (Dutch)

    #245233
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please use this plugin https://wordpress.org/plugins/real-time-find-and-replace/ to translate Share this.
    Thanks
    Mohammad

    #245242
    WineDesignNL
    Member
    Post count: 204

    Hi Mohammed,

    Thanks, tried this, but didn’t work at first and after a couple of tries I got a white screen! So I disabled this plugin, it’s messing with the theme I guess.

    Can’t I change this in a functions.php or something like this?

    #245326
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please paste this code at functions.php of child theme.

    function sf_text_strings( $translated_text, $text, $domain ) {
    	switch ( $translated_text ) {
    		case 'Share this' :
    			$translated_text = __( 'Deel dit', $domain );
    			break;
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'sf_text_strings', 20, 3 );
    

    Thanks
    Mohammad

    #245334
    WineDesignNL
    Member
    Post count: 204

    Nice! Thanks Mohammed!!

    #245462
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    You most welcome and glad to help you.
    Thanks
    Mohammad

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.