How to redirect new visitors to join page?

How to redirect new visitors to join page when they click on any members' profiles (non-members not allowed to view member's profile)?

Thanks in advance!

Quote · 28 Aug 2010

I would also like to know this please.

 

Thank you in advance

Quote · 9 Nov 2010

Not only in members profile this need to be set for all the link for the site

if any visitor click any link like videos, events, blogs

they need to be redirect to the join page or login page

Post Reply - if you going to help - No for - bla bla bla bla
Quote · 9 Nov 2010

Hi,

There is 2 different ways to achieve this :

 

1- The module "Dolphin 7 Membership Subscriptions v.2" :

http://www.boonex.com/unity/extensions/entry/Dolphin_7_Membership_Subscriptions_Module/

You can setup different options.

 

 

2- Redirect to a specific page when anyone arrives to your site and redirect to an other page if the user is logged in

Step 1 : in index.php

• Replace the code  PageCode();

• by Header( "Location: http://www.anylinkhere.com" );

 

Step 2 : in join.php

• Change the function

if($logged['member']) {
$_page['name_index'] = 0;
$_page_cont[0]['page_main_code'] = _t( '_Sorry, you\'re already joined' );
PageCode();
exit;
}

• by

if($logged['member']) {
$_page['name_index'] = 0;
$_page_cont[0]['page_main_code'] = _t( '_Sorry, you\'re already joined' );
Header( "Location: http://www.anylinkhere.com" );
exit;
}

Quote · 10 Nov 2010

cool2

Quote · 20 Jun 2011

I like to redirect my visitors and members to the login box pop up the one when you click the login button on the promo you get a pop up box for login and the signup link

 

any idea how

Post Reply - if you going to help - No for - bla bla bla bla
Quote · 3 Aug 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.