Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author mibuthu

    (@mibuthu)

    This isn’t possible at the moment with the plugin. But due to the usage of the wordpress standard comment form you can probably define the changes in your theme or you can find another plugin which can do that job.

    Options to change the comment form are planned in one of the next versions.

    Thread Starter from ABI roger

    (@rogerabihostingcom)

    I found this on another thread and it worked perfectly:

    The best way to change the wording “Leave a reply” is to use the filter.
    To make it say “Post Your Comment Here:”, place this code in your functions.php file:

    function comment_reform ($arg) {
    $arg[‘title_reply’] = __(‘Post Your Comment Here:’);
    return $arg;
    }
    add_filter(‘comment_form_defaults’,’comment_reform’);

    Plugin Author mibuthu

    (@mibuthu)

    An option for this is now available in the new version 0.6.1

    Thread Starter from ABI roger

    (@rogerabihostingcom)

    Thanks for the update!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change Leave a Reply text’ is closed to new replies.