We’re in the midst of changing forums from BBPress to Discourse. We have a Membership based website on WordPress using WooMembership with 2 levels of member access (they all get the forums), except if they cancel their subscription/membership.
I want to know if its possible with the current WP Discourse plugin to ensure that ONLY paying members are allowed to enter the forum?
Yes, if you use your WordPress site as the SSO provider for your forum, there is an action hook that you can use to limit which users are able to login to the forum. The hook is called wpdc_sso_provider_before_sso_redirect. Some code like this, added to a plugin or your theme’s functions.php file will work. You will need to figure out how to check the user’s WooMembership level.
add_action( 'wpdc_sso_provider_before_sso_redirect', 'wpdc_custom_check_user_membership', 10, 2 );
function wpdc_custom_check_user_membership( $user_id, $user ) {
if ( /* Some condition that returns true if the user doesn't meet the membership requirement */ ) {
wp_safe_redirect( home_url() );
exit;
}
}
I can’t take on any private work, but I can give you some help through this forum. Most of what you are looking to do is provided by the WP Discourse plugin out of the box. By default, the WP Discourse plugin will give all users on your WordPress site access to your Discourse forum. To limit access to users who have purchased a membership, we just need to know how to fill in this part of the code that I posted above:
/* Some condition that returns true if the user doesn't meet the membership requirement */
Got it – thanks for your help – looks straight forward. I’m looking at the hosted Discourse, $100/mo - is that the plan that would be easiest to connect with the plugin and run the forum?
I just want to make sure that, they can only access the forum via going to the main website, and they can’t just access the forum without logging in via website or cancelled their membership.
Hi @JeremyC, I’m considering doing something similar. Would you be able to share your experiences with it? I’d love to talk about it to see if this is a good fit…
Ich weiß, dass dies ein alter Thread ist. Ich möchte denselben Ablauf integrieren (Benutzer meldet sich über Woo Memberships an und erhält Zugang zum Discourse-Forum). Der Kunde möchte jedoch WordPress nicht als SSO-Anbieter verwenden. Ist das immer noch möglich?
Erstelle einen Discourse-Benutzer und/oder füge ihn einer Discourse-Gruppe hinzu, wenn der Benutzer sich über Woo Memberships anmeldet. Dies kann über die Discourse-API umgesetzt werden. Die Implementierung ist etwas aufwendiger als das einfache Versenden einer Forum-Einladung, aber da du möglicherweise auch die Möglichkeit benötigst, den Benutzer aus der Gruppe zu entfernen, sobald seine Mitgliedschaft abläuft, könnte sich dieser Ansatz lohnen.
Ich würde hier beginnen: Wie man die Discourse-API reverse-engineert. Für Details zur Erstellung von Benutzern schauen Sie sich https://docs.discourse.org/ an. Suchen Sie in der Dokumentation nach ‘user’, um Details darüber zu erhalten, wie man einen Benutzer über die API erstellt.