-
@mercime replied to the topic Add profile fields groups to registration in the forum How-to & Troubleshooting 8 years, 11 months ago
>> I know that Base group are shown in the Registration Form
@shmk thanks for confirming, just had to make sure you did. There’s a trac ticket which needs some more work done to get the feature you want at https://buddypress.trac.wordpress.org/ticket/6347 -
@mercime replied to the topic Add profile fields groups to registration in the forum How-to & Troubleshooting 8 years, 12 months ago
@shmk profile fields you add in the Base Field Group shows up in the Registration Form https://codex.buddypress.org/administrator-guide/extended-profiles/
-
Henry Wright replied to the topic Customizing emails template in the forum Creating & Extending 9 years, 10 months ago
Hi @shmk
It’s definitely possible. BuddyPress uses the
wp_mail()
function to send emails. By default, it usestext/plain
as the content type which doesn’t allow HTML. The good news is you can change this. For example:function set_content_type( $content_type ) {
[Read more]
return 'text/html';
}
add_filter( 'wp_mail_content_type', 'set_content_type'… -
Henry Wright replied to the topic Registration hooks in the forum Creating & Extending 9 years, 10 months ago
Hi @shmk
That would be
bp_signup_usermeta
. You’d filter$usermeta
which is an array of the sign-up info.
@shmk
Active 5 years, 3 months ago