One time offer page after joining. Is there a script for this?

Hey all. I was trying to figure out how to add a one time offer for members after they join. Is this possible? Is there a script for this already?

Quote · 5 Apr 2011

What offer do you mean?

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 5 Apr 2011

In a lot of marketing site scripts this is an automatic setup. You just fill in the blanks or supply an html page for it and suply the page name. Some are in php.

What I am talking about is that once someone has joined they are brought to a page that has a one time offer that they will only see once. The first time they log into the site, or directed there right after signup. The offer could be any number of things from a special low price monthtly subscrption or a lifetime membership or anything. I have even seen them used to promote partnerships with other sites. Pay once for two sites sort of thing.

So basicly would like to either have them go to a page on first login or after sign up that will show the offer and link to thier membership if they purchase. This page being unique that it will only be seen one time by each member.

Quote · 5 Apr 2011

i am also interessted in this ...

http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro
Quote · 5 Apr 2011

Doesnt seem to difficult to me .. i think it can be done with a PHPBLOCK using Deanos tools, insert it in profiles page .. thats the page every new user will land on after registration

i cant be bothered to figure this thing out right now, but the code below will get you started

$iProfileID = getID( $_GET['ID'] );
$oDb = new BxDolDb();
$sSQLQuery = "SELECT DateReg FROM `Profiles` WHERE `ID` = $iProfileID  ;";
$sProfile= $oDb->getColumn($sSQLQuery);

 

This will get the ID of the current user

Then it will retrieve from the database what the registration date is of that user and store it in $sProfile

next steps would be to check if date of registration = today() ... if it is, show splashscreen.

good luck!

Quote · 5 Apr 2011

I wish I new enough about programing to finnish what you stated here. I would also like to thank you for explaining it the way you did making it easy to understand the process for those of us that are trying to learn,. Also like the idea of the one time offer being the whole first day so they would be able to check out the site first and see what they are missing. The way I was thinking is one time only after they join. Probably get a lot more sales by the day.

Quote · 9 Apr 2011

Just bumpin to see if there is an easy way to do this that someone might now or be able to compleate what wannabe started?

Quote · 12 Apr 2011

Im also interested if anyone want to develop a mod for this.

 

Quote · 13 Apr 2011

Just bumpin this

Quote · 24 Apr 2011

I have deanos tools and can insert this but I don't have the knowlege to compleate it. Anybody know how? 10 bucks to whoever gets the correct code. Hope that is allowed to post here. I know 10 bucks isn't a lot of money but something to make it worth the time. They should have donate buttons of this forum for you guys that contribute so much.

Quote · 9 May 2011

AM a n00b at programming... not sure..how to redirect new users when the join using the join form..but....i can help you....if you want....maybe....when users join using facebook connect. This is how you do it.

Use the member setting in the configuration, then modify the code that processes that.

Open modules\boonex\facebook_connect\classes\BxFaceBookConnectModule.php

Look for this at line 392

//check redirect page
switch($this -> _oConfig -> sRedirectPage) {
case 'join' :
return $this -> _getJoinPage($aProfileFields, $aProfileInfo['id']);

case 'pedit' :
$sRedirectUrl = BX_DOL_URL_ROOT . 'pedit.php';
break;

case 'avatar' :
$bAvatarRedirect = true;
break;

case 'index' :
$sRedirectUrl = BX_DOL_URL_ROOT;
break;

case 'member' :
default :
$sRedirectUrl = BX_DOL_URL_ROOT . 'member.php';
break;
}

*Change member.php to page/yourpagename*

To the page where the offer is at.

Then go to your admin pannel>>modules>>facebook connect and change where it says "Redirect page after first sign in" to member. and done :)

 

P.S. am jst trying to help..and i hope this help you at least for signing up using facebook connect :)

 

Quote · 10 May 2011

Hey thanks for the help. I'm not sure if that would work or not. I have mandatory confirmation on so the first login would be from a link in the email and I'm not sure if it would work not being logged in by facebook but by the link in the email. Might give it a try and see. Still need one for the rest of the site.

Quote · 10 May 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.