12 responses to “How To Mimic The WPTavern Commenting System”

  1. Jesse Friedman

    Am commenting to see what I’m learning how to mimic

  2. Brandon Mullins

    Far out, I have been looking for a way to snazzy up my commenting system!

  3. Anne

    I think that people are well used to the @ sign with a name next to it @name , it’s common in comments. Me too, I prefer to add the code in my functions.php file whenever possible, instead of installing another plugin, due to a speed of my blog and also then there is a sort of an ownership feeling to it like that. A comment preview available as you type is out there as well, I saw it somewhere. Thank you.

  4. Octavian

    @Jesse Friedman – So, yeah. Thats how it works.

  5. Octavian

    Though I would prefer threaded comments. Not a fan of tweeter.

  6. William Waldon

    Very cool. The comments look nice and are very easy to use! May have to use some of these plugins in the future. Good job!

  7. Daniel

    With that @ reply thing, that mean that I won’t have threaded comments at all? I can’t decide if I rather have threaded comments or the @ reply thing

  8. Aldo

    @Jeffro
    There is already a plugin that makes this: Comment Toolbar by Cristiano Fino. ;)

  9. Aldo

    @Jeffro

    All those options are available only in the backend.
    The reader can click on two links (or buttons): Reply and Quote. The Reply link make the same thing you describe in your post, while the Quote copy the commenter’s text in the textform area.

  10. M.K. Safi

    Jeffro, Thanks for sharing these plugins. I also like WordPress Conditional CAPTCHA. It redirects spam-flagged comments to a CAPTCHA page. If CAPTCHA is entered correctly, comment gets moved to moderation queue. Pretty useful for me since my site is swarmed by spam-bots, all of whom fail to pass CAPTCHA.

    By the way, is it possible to use WP Ajax Edit Comments but without the Ajax effect?

    @Anne – Problem is — when you put everything in functions.php — when you switch themes, you’ll have to manually port functionality to the new theme. With plugins, you don’t have that problem.

  11. Elpie

    @M.K. Safi – The way I get around that is by keeping custom functions in a directory inside wp-content, separate to themes or plugins, then using the theme’s functions.php to just call the other files. This way, you can organise functions eg. comment-functions.php, nav-functions.php etc which makes it easy to identify code snippets. Then just include by calling through functions.php. Its a safe way of having custom functions that work across different themes, without the risk of deleting them if you change themes.