Secure Invites is a Wordpress plugin that allows you to only allow invited people to sign up.
This plugin stops access to your signup page, except where the visitor has been invited and clicked the link in their invitation email. Your users invite people, and you can see who has sent the most invitations, and how many resulting signups have occurred. Other features:
This plugin is based on the invitation plugin by kt (Gord) from http://www.ikazoku.com.
There are a few extra features introduced in version 0.9:
Each time somebody (Person A) invites a friend (Person B), and Person B signs up, Person A is awarded 5 points. If Person B invites someone (Person C) and they sign up, Person A is awarded 2 points. And if Person C invites someone (Person D) and they sign up, Person A is awarded 1 point (and, of course, Person B is awarded 2 points). Using this pyramid-like system you can see who is inviting not just the most people, but the best kind of people.
The introducer points are stored in the users meta table with the key secure_invite_points
. You can retrieve a persons points using this function: get_usermeta( [user ID], "secure_invite_points" )
substituting [user ID] for their actual user ID.
As an administrator you can now select multiple invitations and delete them. This is much better than the one-at-a-time deletion method in previous versions.
There are three shortcodes available:
1) By using the [inviteform] shortcode you can place an invitation form on any post or page.
2) Using [bestinviters] will show a list of the top 6 inviters by points, with the points they have currently got.
3) Using [myinviter] will show the diplay name for the person who invited the current user. Using [myinviter id=”123″] will show the display name for the person who invited the user with ID 123.
If your BuddyPress theme is the default theme (for BuddyPress version 1.2 or above), or a child of the default theme, or uses the same template hooks as the default theme, you can put the invitation form in the following places by just ticking the right box in your settings screen:
The invitation form is hidden by default, and is shown by clicking an “Invite a friend” button which makes the form slide into view.
If you want to quickly set up invitations without messing with lots of settings, there are now four presets you can use:
Or you can use your own custom settings just as before.
Sometimes you want particular users to be able to invite more friends than the default, or perhaps you want to stop a particular user from inviting anybody at all. Now you can, by searching for the user and changing their own individual settings. You san set whether they are allowed to send invitations at all, and of so how many (either a limited number or unlimited).
Next on the list for this plugin is the ability to invite multiple people at the same time (with the same message).
Then, adding the ability for site admins to only allow hand-picked users to send invitations (thanks to Tuomas for that suggestion here: http://www.stillbreathing.co.uk/blog/2009/01/14/wordpress-mu-plugin-secure-invites/#comment-24240).
For standard WordPress: just install the plugin as normal from the plugin repository.
For WordPress MU and WordPress MultiSite: there are two options. Either place the plugin in your /wp-content/mu-plugins/ directory (not /wp-content/plugins/), this method requires no activation. Or install the plugin as normal from the plugin repository and enable it for all sites in your network.
To enable the template form in your template page you should call the secure_invite_form() function like this:
<php? secure_invite_form(); ?>
There are three optional parameters in this function, they are:
So to set the CSS class of the form to ‘inviteform’, and the success message to ‘Yay!’ and the error message to ‘Oops!’ you would use this:
<php? secure_invite_form( ‘inviteform’, ‘Yay!’, ‘Oops!’ ); ?>
In addition, you can now automatically show the invitation form in your BuddyPress theme (if it is a child of the 1.2 or greater default theme, or it has all the same template hooks). Just tick the right boxes in the admin settings screen for where you want the invitation form to appear in your theme.
To scratch my own itch when developing Wibsite.com. Hopefully this plugin helps other developers too.
Yes, several users have reported it works fine. You just need to change the URL of the signup form from the default (wp-signup.php) to the BuddyPress page so the plugin knows which URL to secure. In addition, you can now automatically show the invitation form in your BuddyPress theme (if it is a child of the 1.2 or greater default theme, or it has all the same template hooks). Just tick the right boxes in the admin settings screen for where you want the invitation form to appear in your theme.
An invitation form can be easily put into your template page, look at the Installation details for more information.
Fixed security problem for logged-in users
Added [inviteform] shortcode
Fixed BuddyPress redirect bug (thanks to Alessandro: http://www.ilbigliettino.com/)
Added mini admin report in a dashboard widget
Added invite form in a dashboard widget
Fixed bug for new users invite lockout
Fixed incorrect registration links for standard WordPress and BuddyPress sites
Fixed BuddyPress registration bug (thanks to Patrick Neyman: http://patrickneyman.com/). Made the default settings more sensible. Added proper notification for why the invitation button can be disabled.
Fixed bug with secure_invite_user_can_invite() when time limit is 0
Fixed bug with is_site_admin()/is_super_admin()
Fixed bug in MultiSite and MU admin.
Made the plugin work with standard (i.e. not MU or MultiSite) WordPress.
Fixed bug allowing an email address to be repeatedly invited (thanks to Chestnut from http://blog.bng.net for reporting this bug)
Fixed bug reported here: https://wordpress.org/support/topic/411404
Compatibility with WP 3.0, fixed small bugs
Updated plugin URI
Removed Plugin Register
Fixed conflict bug with group invite screen
Fixed bug with automatic BuddyPress integration options
Fixed bug with template tag form (thanks to Rune from http://vixenmagazine.no)
Added Plugin Register code
Added automatic BuddyPress theme integration, added inviter points system, added bulk deletion of invites, added settings presets, added override for special users, fixed bugs
Added registration email URL to settings
Allowed multiple registration URLs to be protected, changed email headers to fix from address bug
Added a support link and donate button
Added HTML comments for reasons why a user cannot send invites to help with troubleshooting
Added stripslashes() to fix display errors (thanks to Mark from http://of-cour.se/ for reporting that)
Disabled invite form if site registrations have been disabled (thanks to Mark of http://of-cour.se/ for the suggestion)
Added limit to the number of invitations a user can send, added secure_invite_form() function for display in a theme page, added deletion of invites for site admins, cleaned up the architecture