Simple Machines Community Forum

Customizing SMF => SMF Coding Discussion => Topic started by: ConfusedToday on November 20, 2021, 10:30:07 PM

Title: I'd like to delete one word in the welcome email
Post by: ConfusedToday on November 20, 2021, 10:30:07 PM
I'd like to delete the word "Team" that's in the emails sent upon registration and admin acceptance. I found the file that seems to have most of the text in those emails, but not the word "Team", which I prefer to replace with the word "Administrator".

Thank you!
Title: Re: I'd like to delete one word in the welcome email
Post by: Sir Osis of Liver on November 20, 2021, 10:34:04 PM
Try this -

index.english.php


$txt['regards_team'] = 'Regards,' . "\n" . 'The ' . $context['forum_name'] . ' Team.';

Title: Re: I'd like to delete one word in the welcome email
Post by: ConfusedToday on November 21, 2021, 08:03:29 PM
Quote from: Sir Osis of Liver on November 20, 2021, 10:34:04 PMTry this -

index.english.php


$txt['regards_team'] = 'Regards,' . "\n" . 'The ' . $context['forum_name'] . ' Team.';



That worked. Thank you!