Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #978592

    Hi Enfold Team!

    I would like to make it possible that people can leave comments under my blog and can share it via social media.
    Unfortunately I can’t find how to build this.

    I hope you can help me with that!

    Thanks in advance.
    Eefke

    #978750

    Hey Eefke,

    You can use the Comments and Social Share Buttons elements for that.

    Best regards,
    Rikard

    #978830
    This reply has been marked as private.
    #979618

    Hi,
    To adjust the font-size of the comment area Try this code in the General Styling > Quick CSS field, the top rule is the heading and the next one is for the content:

    .comment-entry h3.miniheading {
    font-size: 70% !important;
    }
    .comment-entry span.minitext {
    font-size: 70% !important;
    }

    To add a border around the text area, Try this code in the General Styling > Quick CSS field:

    .comment-form-comment textarea#comment {
    border-color: red !important;
    }

    Best regards,
    Mike

    #980105

    Hi Mike,

    Thanks for your reply.

    The border worked. Great!
    I not only want to adjust the fontsize of the comments but also the content of the text:
    “Plaats een Reactie
    Meepraten?
    Draag gerust bij!”

    Is that possible?
    Thanks in advance!

    #980249

    Hi,

    Add this to quick css:

    .comment-entry h3.miniheading {
    font-size: 50px !important;
    }
    .comment-entry span.minitext {
    font-size: 30px !important;
    }

    Best regards,
    Jordan Shannon

    #980496

    Hi Jordan,

    Thanks for your reply! Unfortunately that did not work.
    It only made the text bigger but I would like to adjust (change) the text.

    Is that possible?
    Eefke

    #980522

    Hi,
    To change to content of the text, please try the Say What Plugin
    Try adding the text you would like to replace, and your new text, and use ‘avia_framework’ as the Text Domain. This screenshot shows a example.
    setting_breadcrum

    Best regards,
    Mike

    #981507
    This reply has been marked as private.
    #981593

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_comment_script(){
      ?>
      <script>
      jQuery(window).load(function(){   
      // Replace coments title "Plaats een Reactie". 
      jQuery(".single-post .miniheading").text("Let me know your thoughts");
      // Replace sub-heading "Meepraten? Draag gerust bij!". 
      jQuery(".single-post .minitext").text("leave a comment.");      
    });
      </script>
      <?php
      }
      add_action('wp_footer', 'custom_comment_script');

    Please adjust the text to suit

    Best regards,
    Mike

    #981730

    Hi Mike,

    Great, it worked! Really happy with that. Thank you.

    The only think I would like to remove is the circle with the amount of reactions (under the social media share buttons). Is that possible?

    Kind Regards,
    Eefke

    #981733

    Hi,

    Add this to quick css:

    .side-container-comment-inner{
    display:none!important;
    }

    Best regards,
    Jordan Shannon

    #981734

    Great, it worked.
    Thanks Enfold Team for helping me out.

    Kind Regards,
    Eefke

    #981735

    Hi,

    No problem at all. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Comments and social share buttons under blog’ is closed to new replies.