• I’ve been searching for an answer to this (I know it’s out there) but I can’t find anything.

    I want readers/viewers to be able to comment easily on my videos – the facebook like symbol is a start but I want a button or something that encourages them to comment – I’ve installed different plugins but nothing seem to work.

    anybody care to point me in the right direction?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter oldgrumpy

    (@oldgrumpy)

    you can see what’s happening – or not happening here…

    https://www.mailath.com/b22

    maybe you have comments turned off? go to the page where you edit your posts, scroll down and see under Discussion. there should be a check mark beside Allow Comments.

    Thread Starter oldgrumpy

    (@oldgrumpy)

    no – checked that – every post has comments turned on and I can access and enter a comment by clicking on the title and looking at that individual post – but if people don’t know that’s what they should do 0 it’s pointless. I need something near the video giving them the optuon to comment. I have a facebook like icon but that’s not really giving any feedback.

    if you have a comments.php in your theme, you can call it by putting

    <?php comments_template(); ?>

    after the body of your post. see if that works?

    Thread Starter oldgrumpy

    (@oldgrumpy)

    I checked for comments.php – it’s there, so I copied & pasted your code in the post and it simply displays as text. How do I insert it AFTER the body of the text as you suggest?

    BTW – thanks for your help on this – it’s quite frustrating

    ah, wait, need to add a couple more lines. it should be like this:

    <?php
      global $withcomments;
      $withcomments = true;
      comments_template();
    ?>

    insert it here (i included a few lines before and after where the code should be so you can find it):

    <div class="postmetadata">
             <p><a href="#">Continue Reading</a></p>
       </div>
    </div>
    
    <?php
      global $withcomments;
      $withcomments = true;
      comments_template();
    ?>
    
    <?php endwhile; ?>
    Thread Starter oldgrumpy

    (@oldgrumpy)

    thank you – works like a charm

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘comment on a page’ is closed to new replies.