Membership levels based on Sex?

Does anyone know how to set up membership levels for different sexes?  For example if I wanted to have my site set up so that female profiles are free to join but male profiles would have to pay a fee?

Quote · 11 Mar 2010

Dolphin used to include the option for women to join for free, but this functionality was later removed in Dolphin 6.1. It was released as a modification, but I am not aware of an updated release for Dolphin 7.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 11 Mar 2010

Anyone found a solution to this?

Quote · 5 Jul 2010

I would say- create 2 new membership levels - one free and one paid.

Then modify the join code to automatically add female members to the free group.

HTH

/DM

Dolphin - Ajax Masturbation
Quote · 5 Jul 2010

in profile_activate.php

find

//Promotional membership
if ( getParam('enable_promotion_membership') == 'on' )
{
$memership_days = getParam('promotion_membership_days');
setMembership( $p_arr['Couple'], MEMBERSHIP_ID_PROMOTION, $memership_days, true );
}
}

add underneath

setMembership( $p_arr['ID'], FEMALE_MEMBERSHIP_ID, 0, true );

Change FEMALE_MEMBERSHIP_ID to the ID of the new group

HTH

/DM

Dolphin - Ajax Masturbation
Quote · 5 Jul 2010

Oops that's ony half of it - lol

Need to determine which sex the user is...

Give us a sec

/DM

Dolphin - Ajax Masturbation
Quote · 5 Jul 2010

if ($p_arr['Sex'] == 'female') {
setMembership( $p_arr['ID'], FEMALE_MEMBERSHIP_ID, 0, true )
}

Should do the trick.


/DM

Dolphin - Ajax Masturbation
Quote · 5 Jul 2010

Nice, Thank you!

Quote · 5 Jul 2010

Could there be an add-on for the female sex like country?

What I mean is that I want to give those free female membership to females from specified countries!

if ($p_arr['Sex'] == 'female') {
setMembership( $p_arr['ID'], FEMALE_MEMBERSHIP_ID, 0, true )
}

Should do the trick.


/DM

Diddy is not greedy and has time. Dolphin is cool and its not just mine :-)
Quote · 9 Jul 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.