Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew

    (@omegaphase)

    Hi Jason,

    I was able to accomplish it by going to Settings » Invite Anyone, and unchecking the box next to “Allow users to send group invitations along with email invitations”. Once I did that, only the email form remains. I hope that helps.

    Plugin Author Boone Gorges

    (@boonebgorges)

    jasonqw1 – Here’s a snippet that will redirect the “Send Invites” tab to the user’s email invitation page:

    function bbg_change_group_ia_link() {
        if ( bp_is_group() ) {
            buddypress()->bp_options_nav[ bp_get_current_group_slug() ]['invite-anyone']['link'] = bp_loggedin_user_domain() . 'invite-anyone';
        }
    }
    add_action( 'bp_screens', 'bbg_change_group_ia_link', 20 );

    Note, however, that this will make it impossible to invite existing members of the site to the group (the purpose of the group’s existing Send Invites tab).

    Andrew

    (@omegaphase)

    Hi Boone,

    Some of us are using your plugin strictly for inviting external users into private groups. The existing members list reveals member names in groups that we might want to keep private. In my case, I’m using it as a customer portal, each group representing a company, so we don’t want a list of all the other company employee names exposed as well as site admins, etc.

    Great plugin by the way, thanks!
    Andy

    Plugin Author Boone Gorges

    (@boonebgorges)

    Cool! I’m glad the plugin helps to make that work for you.

    Is there a way to do this same thing for the invite step during the group creation process?

    @rell218: This is not your topic. If you require assistance then, as per the Forum Welcome, please post your own topic.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to have "Email invites" only?’ is closed to new replies.