Activating a profile

When a user registers on my website, they have to confirm their email. Once the email is confirmed, dolphin sets there profile status to "approval". Is there a way to make it so that after the email gets confirmed, dolphin sets the profile status to "active" instead of "approval"?

Quote · 5 Apr 2010

Not tested, but you can try it.

profile_activate.php

Line 104.

if ( $autoApproval_ifJoin )
{
$status = 'Active';
$rEmailTemplate = new BxDolEmailTemplates();
$aTemplate = $rEmailTemplate -> getTemplate( 't_Activation' ) ;

sendMail( $p_arr['Email'], $aTemplate['Subject'], $aTemplate['Body'], $p_arr['ID'] );
}
else {
$status = 'Approval'; // <---- try changing this to Active
}

https://www.deanbassett.com
Quote · 5 Apr 2010

I keep missing the fact that your dolphin 6. That was for D7, but the code section your looking for is similar.

https://www.deanbassett.com
Quote · 5 Apr 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.