Need to change URL for Continue link

Hi,
When your registration have done you will get Email Confirmation Request.
When you click URL in your email you will redirect to "E-mail confirmed" page.
And you will see following message......

Congratulations! Your e-mail confirmation succeeded and your profile has been activated.
Continue >>

When you click "Continue >>" your will redirect to account page(member.php) but I want member to redirect to profile page({nickname}).

Is there anyone know how to change link URL to {nickname} instead of "member.php" ???

mail.png · 10.6K · 143 views
Quote · 10 Apr 2014

search the language keys for 'Congratulations' - this should yield you the one that you need to change the link in.

caredesign.net
Quote · 10 Apr 2014

Hi,

Thank you  for your advice.

I have searched "Congratulations" but there was no link.

But I found code for the link that I have mention with.

$aCode['bx_if:next']['content']['next_url'] = BX_DOL_URL_ROOT . 'member.php';

I have changed "member.php" to "{nickname}" .

But when I clicked link it URL shows "yoursite.com/{nickname}" not "yoursite.com/yourname" so I get "Page was not found " message.

Does any one know how to make it works?

Quote · 11 Apr 2014

Hello,

Find 'profile_activate.php' file in Dolphin root. Back it up. Find the following code near line 110:

$aCode['bx_if:next']['content']['next_url'] = BX_DOL_URL_ROOT . 'member.php';

 

And replace this line with the following:

$aCode['bx_if:next']['content']['next_url'] = BX_DOL_URL_ROOT . $p_arr['NickName'];

 

Best regards, nuknspax.

Free and premium Dolphin templates. Custom design services.
Quote · 11 Apr 2014

try changing that to:

 

$aCode['bx_if:next']['content']['next_url'] = BX_DOL_URL_ROOT . 'profile.php?ID=' . $_COOKIE['memberID'];

caredesign.net
Quote · 11 Apr 2014

Thank you guys! it worked just fine! I really appreciate all your help!!

Quote · 11 Apr 2014
 
 
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.