Join to a group

How can new member join to a group?

Say, add a group option in the Join form,

so the the new member can pick up the group

he want to join.

Thanks.

Jim

Quote · 11 Nov 2008

To join a Group you just have to go to the Groups tab, select the group you want to join and there is a Join link - if you have a lot of groups, adding that information to your join form could take up a lot of space

Quote · 11 Nov 2008

Thanks, Dartin.

Jim

Quote · 12 Nov 2008

I have an issue. Currently if a user is not yet activated, he is still able to join groups, is it possible to disallow users to join groups if he has not yet activated his account?

thank

Quote · 7 Sep 2009

I have an issue. Currently if a user is not yet activated, he is still able to join groups, is it possible to disallow users to join groups if he has not yet activated his account?

thank

in group_actions.php

look for

case 'join':

add these lines after the above

$arrMember = getProfileInfo( $memberID );
if( $arrMember['Status'] != 'Active' )
{
$_page['header']        = _t( "_Group join error" );
$_page['header_text']   = _t( "_Group join error" );
$_page_cont[$_ni]['page_main_code'] = MsgBox(_t( "_your not active" ));
PageCode();
exit;

}

Live Support http://dolphinbugfixing.com
Quote · 8 Sep 2009
 
 
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.