redirect to profile after join

is there any way to redirect members to profile after they join? instead of to avatar?..or must it do so.

regards

Dean

Quote · 6 Apr 2010

Advanced settings, other,default relocation link to promo members. you can change it there

Back to pulling my hair out! (ouch, ouch,ouch)
Quote · 6 Apr 2010

does anybody have a fix for this? redirect to another page instead of avatar after joining..

Quote · 2 Oct 2011

no solution for this?

Quote · 2 Oct 2011

Open file join.php. On line 34 (or in a line near 34) you'll see the following command:

    header ('Location:' . BX_DOL_URL_ROOT . 'member.php');

Replace it with

    header ('Location:' . BX_DOL_URL_ROOT . 'profile.php');

New users should be redirected to the account page now. Hope this helps!

http://www.boonex.com/market/posts/kazatzo
Quote · 2 Oct 2011

nope we want to bypass avatar page completely, and have user go to profile right after submitting join form.

Quote · 2 Oct 2011

Ok. I finally have a solution for this.

Edit inc/classes/BxDolJoinProcessor.php

Near the end of the file look for this.

        if ('EXIT' == BxDolService::call('avatar', 'join', array ($iMemID, $sStatusText))) {
            exit;
        }


Comment out those lines and/or replace with this.

        bx_login ((int)$iMemID);
        header("Location: " . BX_DOL_URL_ROOT . getNickName($iMemID));
        exit;


If you prefer to redirect to the dashboard then use this.

        bx_login ((int)$iMemID);
        header("Location: " . BX_DOL_URL_ROOT . "member.php");
        exit;

https://www.deanbassett.com
Quote · 10 Oct 2011

Pure genius, Thanks.

Quote · 11 Oct 2011

thank you for this deano!

http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro
Quote · 24 Oct 2011
 
 
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.