Hey @Mad Dog,
Unfortunately it is a bit tricky to change subject lines βΒ it’s not impossible though.
While you cannot do it from within our template system, which is safe and persists across updates, you can customize subject lines if you really need to. Please note that this will require editing core plugin code, which means that ever plugin update will overwrite these changes so that you have to re-add the customizations after each update.
But essentially, head into your Community Events plugin files and head to this file:
src/Tribe/Main.php
Once here, head to line 1220 or so. You should be looking for code like this:
if ( is_array( $this->emailAlertsList ) ) {
foreach ( $this->emailAlertsList as $email ) {
wp_mail( trim( $email ), $subject, $message, $h );
}
}
That $subject variable is what you’d need to change to change the subject line of emails. You’ll see it defined a few lines up above the code I highlighted above; alter this to your needs an it should work well.
I hope this helps! Sorry that this is what’s required to make this change at this time π In the future we can hopefully make this filterable or otherwise easier to change.
Cheers,
George