=== elertzThis === Contributors: mihaimuntenas Donate link: http://elertz.com/ Tags: elertz, notification, messaging Requires at least: 2.2 Tested up to: 2.2 Stable tag: 1.0 This plugin adds 'Add to elertz' link to your topics. == Description == This plugin adds 'Add to elertz' link to your topics, allowing you to take advantage of the elertz messageing system to notify your visitors about updates to your blog (eg. comments posted to a specific topic). == Installation ==
In order to install elertzThis into your WordPress blog, please locate the directory wp-content/plugins under your WordPress installation, and UNPACK the ENTIRE contents of this archive to that folder.
Open wp-content/themes/[yourtheme]/index.php
Find the line where it says: <?php edit_post_link('Edit', '', ' | '); ?>
( note: for 'default' theme, line no. is:17.)
Before that line, add this: <?php if(function_exists(elertz_this)) { elertz_this(); } ?>
Open wp-content/themes/[yourtheme]/index.php
Find the line where it says: <?php } edit_post_link('Edit this entry.','',''); ?>
( note: for 'default' theme, line no. is:47.)
After that line, add this: <?php if(function_exists(elertz_this)) { elertz_this(); } ?>
Open wp-comments-post.php
Find the line where it says: $location = ( empty($_POST['redirect_to']) ? get_permalink($comment_post_ID) : $_POST['redirect_to'] ) . '#comment-' . $comment_id;
( note: usualy line no. between 71 - 73.)
Before that line, add this: if ( function_exists('elertz_this') ){ elertz_this(true); }