Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #605049
    #605162

    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

    #605216

    At First this is ok. But should contain a Link to the Privacy Policy as well.

    #605229

    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

    • This reply was modified 8 years ago by Yigit.
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.