=== Plugin Name ===
Contributors: iyus
Donate link: http://iyus.info/
Tags: reply, at-reply, comments, twitter
Requires at least: 2.3
Tested up to: 2.7.1
Stable tag: 1.0.1

This plugin allows you to add Twitter-like @reply links to comments.

== Description ==

This plugin allows you to add Twitter-like @reply links to comments.
When clicked, those links insert the author name and a link to the comment you are replying to in the textarea.

Most of the code is taken from the Custom Smilies plugin by Quang Anh Do which is released under GNU GPL :
http://wordpress.org/extend/plugins/custom-smilies/

Thanks to [Guillaume Ringuenet](http://blog.guillaumeringuenet.info/) who made the arrow graphics.

I didn't create anything new, and I do not claim so in any way.
This plugin is just a feature I wanted and thought it could interest some other people.

== Changelog ==

**1.0.1** - Minor (graphic) update

* replaced the arrow graphics with better **and** original ones made by [Guillaume Ringuenet](http://blog.guillaumeringuenet.info/).

**1.0** - Initial Release

== Installation ==

1. Upload the plugin folder to the `/wp-content/plugins/` directory.
2. Activate the plugin through the 'Plugins' menu in WordPress
3. Place `<?php if(function_exists("yus_reply")) yus_reply(); ?>` in your comments.php where you want the link to appear. For example, before the `<?php edit_comment_link(` part.
4. (optional) In the `extra` folder you will find a `reply.png` file for dark background themes, and a french localised version of `at-reply.php`, use them to replace the default files if you need.

== Frequently Asked Questions ==

= It doesn't work! I activated the plugin but I can't see the reply arrows. =

You skipped the 3rd step of the installation process. Try again. :)

= It doesn't work! I can see the reply arrows but clicking them does nothing. =

Either you have disabled JavaScript in your browser or your WordPress theme is not using the default id for the comments textarea (which is `comment`). In the later case, check your `comments.php` file to find your textarea id, then open `at-reply.php` and replace all the `document.getElementById('comment')` with `document.getElementById('YOUR_ID')`.

= How can I replace the reply.png image with a normal text link? =

Open `at-reply.php`  and replace `<img style="cursor:pointer;" onclick='yus_replyTo("<?php comment_ID() ?>", "<?php comment_author();?>")' title="Reply to this comment" alt="Reply to this comment" src="<?php echo get_option('siteurl'); ?>` with `<a href="#" title="Reply to this comment" onclick='yus_replyTo("<?php comment_ID() ?>", "<?php comment_author();?>"); return false;'>Reply</a>`


= Possible conflicts with other plugins. =

A plugin that filters the default WordPress comments functions, may prevent @ Reply from working. For example, WP_Identicon does this, but it also has an alternate setup for "advanced users" that doesn't conflict with @ Reply.


== Screenshots ==

1. The reply arrows as they appear in comments.
2. This is automaticaly inserted when you click on a reply arrow.