Is there a way to change the wording of "Member since" to something else?
|
You could put this in your settings.php
Or you could change it in the form by preprocessing that form. I think there are also language modules that allow you to change phrases/labels site-wide. |
|||
|
|
|
The module String Overrides: http://drupal.org/project/stringoverrides lets you replace virtually any string with another string. |
|||
|
|
|
If you want to replace any occurrence of that string, then you can use the following method:
In Drupal 7, it would be possible to alter only the string used in the user profile with hook_user_view_alter(), such as with the following code added to a module.
|
|||
|
|