Statistics: Posted by Jason Caldwell — October 27th, 2010, 11:40 pm
Statistics: Posted by bkeller99 — October 27th, 2010, 10:02 pm
<?php
add_filter("bp_core_activation_signup_user_notification_subject", "my_custom_subject");
add_filter("bp_core_activation_signup_user_notification_message", "my_custom_message");
function my_custom_subject($original_subject){ return 'Activate Your Account'; }
function my_custom_message($original_message){ return 'Custom Message'; }
?>
Statistics: Posted by Jason Caldwell — October 27th, 2010, 7:29 am
Statistics: Posted by bkeller99 — October 22nd, 2010, 11:27 am