Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    wpDiscuz uses the email which is set in Dashboard > Settings > “Email Address” option. This email, “This address is used for admin purposes, like new user notification and others…”

    Thread Starter bryanbatcher

    (@bryanbatcher)

    I’m sorry, I meant I want to change the message that the email contains.

    Right now it says something like “New comment on the discussion you are interested in”

    I’d like to change that.

    Plugin Author gVectors Team

    (@gvectors-team)

    You can change all email texts here: http://screencast.com/t/t6msU72Pf
    Dashboard > wpDiscuz Phrases > Emails Tab

    Thread Starter bryanbatcher

    (@bryanbatcher)

    Of course! Why didn’t I look in the phrases menu???

    Thank you!

    Thread Starter bryanbatcher

    (@bryanbatcher)

    While I have your attention, is there a way to remove the “new replies to my comments” option in the subscription bar? I have replies disabled and I want the only option available to be “new follow-up comments.”

    Plugin Author gVectors Team

    (@gvectors-team)

    There is not such an option yet.
    But you can use jQuery. Put this code before <?php wp_footer(); ?> in your current active theme’s footer.php file:

    <script type="text/javascript">
    	jQuery(document).ready(function ($) {
    		if( $('.wpdiscuz_select').length ){
    			$('.wpdiscuz_select').children('option[value="all_comment"]').css('display','none');
    		}
    	});
    </script>
    Thread Starter bryanbatcher

    (@bryanbatcher)

    Thank you!

    You’ve been a great help!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Change "New Comment" notification email’ is closed to new replies.