Currently, the messages are hardcoded and cannot be customized or removed. I the case of having a custom "thank for registering" page, these messages can become redundant. It would be ideal if we had some more flexibility about this.

// Compose the appropriate user message--admin approvals don't require a validation email.
  if($reg_pass_set && variable_get('user_register', 1) == 1) {
    if ($pre_auth) {
      $message = t('A validation e-mail has been sent to your e-mail address. In order to gain full access to the site, you will need to follow the instructions in that message.');
    }
    else {
      $message = '';
    }
  } else {
    $message = t('Your password and further instructions have been sent to your e-mail address.');
  }
CommentFileSizeAuthor
#7 logintoboggan-640824.patch4.61 KBDeeLay

Comments

hunmonk’s picture

Version: 6.x-1.6 » 7.x-1.x-dev

6.x branch is closed for features.

YK85’s picture

+1 subscribing

Bilmar’s picture

+1 subscribing

hunmonk’s picture

Title: Ad the ability to customize or hide system messages on account creation. » Add the ability to customize or hide system messages on account creation.
Status: Active » Closed (won't fix)
kmonty’s picture

Really? It would be nice to not have to use that module on a big, performance oriented website for one simple text change.

hunmonk’s picture

it would also be nice to not have to put a setting in for every message that the module generates... ;)

i've had requests for the ability to customize many of the LT's messages. i'm not willing to add a ton of message settings, it just seems silly to do so when a module already exists that does exactly that.

DeeLay’s picture

StatusFileSize
new4.61 KB

I just had to do this recently, so here is a patch if anyone is interested.

I can understand that you have to draw the line somewhere with how much can be customized, however stringoverrides is unaware of the context in which the string is being used, so you would not be able to use variables.