Skip to:
Content
Pages
Categories
Search
Top
Bottom

all users need approval, can I change messages?

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

  • Robin W
    Moderator

    @robin-w

    I’m not sure where this message is coming from.

    It is not in bbpress, and bbpress just uses WordPress registration.

    It may well be WordPress (I haven’t got auto registration on any of my test sites so can’t say)

    Or are you running and registration plugins, or does your theme do this, or is it WordPress.

    You’ll need to do a bit more digging.


    tumptyteapot
    Participant

    @tumptyteapot

    Thank you, I wonder if it is from Buddypress? I’ll ask on there.
    I don’t have any registration plugins running.


    Robin W
    Moderator

    @robin-w

    great – it may well be buddypress or WordPress.

    If you give me a link, I’ll register and might be able to tell from the code sent to the browser


    tumptyteapot
    Participant

    @tumptyteapot

    you superstar! thank you
    http://www.mizantalk.co.uk


    Robin W
    Moderator

    @robin-w

    yes it is buddypress

    you can change the text as per below

    //This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.
    ' ) {
    	$translated_text = 'new text';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );

    so just put what you want in place of ‘new text’

    Put this in your child theme’s function file – or use

    Code Snippets


    tumptyteapot
    Participant

    @tumptyteapot

    you are my favourite person of the day! Thank you so much!


    tumptyteapot
    Participant

    @tumptyteapot

    it didn’t work though 🙂 Maybe it needs time or something.

    Do you know of a plugin that would stop the automatic email and make this easier?


    tumptyteapot
    Participant

    @tumptyteapot

    aha! I found all the emails from BuddyPress, there is a section in the sidebar where they can be edited. So that is the first problem solved.


    tumptyteapot
    Participant

    @tumptyteapot

    apologies, it is not letting me delete messages.

    I think I have disable the emails to new members with the Manage Notification E-mails plugin

    I am still trying to change the text on the ‘Create an Account’ page
    You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.


    tumptyteapot
    Participant

    @tumptyteapot


    Robin W
    Moderator

    @robin-w

    great – glad you are fixed

Viewing 11 replies - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.
Skip to toolbar