Change Postie confirmation message
-
Hi all,
I’m using this pluging for my site. I’d like to change the email text with whom Postie sends the confirmation message to the article senderWhere can I change this text?
Thank you for you contribute
-
Currently you have to change this via code.
http://postieplugin.com/filter-postie_email_notify_subject/
http://postieplugin.com/filter-postie_email_notify_body/I tried this and it works but it only adds text to the default message.
Can I replace the default message with my translated message?
Please post the code for your filter.
Basically I just copied the examples from the two links and changed German to Swedish.
// Postie Swedish title add_filter('postie_email_notify_subject', 'my_postie_email_notify_subject', 10, 3); function my_postie_email_notify_subject($subject, $postemail, $postid) { return $subject . ' / Ditt inlägg är publicerat'; } // Postie Swedish body add_filter('postie_email_notify_body', 'my_postie_email_notify_body', 10, 3); function my_postie_email_notify_body($body, $postemail, $postid) { return $body . "\nNu är ditt inlägg publicerat på webbsidan"; }Just return the translated text.
// Postie Swedish title add_filter('postie_email_notify_subject', 'my_postie_email_notify_subject', 10, 3); function my_postie_email_notify_subject($subject, $postemail, $postid) { return 'Ditt inlägg är publicerat'; } // Postie Swedish body add_filter('postie_email_notify_body', 'my_postie_email_notify_body', 10, 3); function my_postie_email_notify_body($body, $postemail, $postid) { return "Nu är ditt inlägg publicerat på webbsidan"; }Brilliant Wayne!
Thanks for the help.
The topic ‘Change Postie confirmation message’ is closed to new replies.