Tagged: datenschutz, sharing, social buttons, social sharing
According german law I want to display a small line above the social-Buttons within the blog.
The line should have something like this “Please read Privacy Policy before sharing this article via social media”
Also no js of any social media site (tumblr, faceboook, twitter etc.) should be used.
Hey!
Try adding this code to the Quick CSS:
.av-share-box:after {
margin-top: 10px;
display: block;
content: "Please read Privacy Policy before sharing this article via social media";
}
Cheers!
Josue
At First this is ok. But should contain a Link to the Privacy Policy as well.
Hey!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avia_social_share_title','new_share_title');
function new_share_title() {
$output = 'Share this post on: <br>';
$output .= '<a class="social-notice" href="http://kriesi.at" target="_blank">Please read Privacy Policy before sharing this article via social media</a>';
return $output;
}
You can change font size and color using following code in Quick CSS
.social-notice { color: red; font-size: 11px; }
Best regards,
Yigit