adispiac
Forum Replies Created
-
Hi Steven,
This shouldn’t happen and it hasn’t been reported by any of our users. Also, we’re not displaying any blocked message with the plugin.Could you get in touch here and sent us a screenshot with the message?
I’m sure we’ll get to the bottom of it and help you fix this issue.
Thanks,
Admin Approval based on User Role is now available in Profile Builder.
Forum: Plugins
In reply to: What is the Best Membership Plugin For WordPress?Paid Member Subscriptions is also free and supports PayPal Standard by default.
It offers content restriction as well based on membership plans and logged in status.PayPal Pro, Stripe and Authorize will follow soon, but probably as paid add-ons.
Forum: Everything else WordPress
In reply to: Update user notificationsYou can make it 100% 🙂
A simple way to email your users when changin their role is by adding this code to your active theme’s functions.php file or in an empty plugin like this one.
function email_user_role_update( $user_id, $new_role ) { $site_url = get_bloginfo('wpurl'); $user_info = get_userdata( $user_id ); $to = $user_info->user_email; $subject = "Role changed: ".$site_url.""; $message = "Hello " .$user_info->display_name . " your role has changed on ".$site_url.", congratulations you are now an " . $new_role; if ( strtotime ( $user_info->user_registered) < strtotime ('-30 minutes') ) { wp_mail($to, $subject, $message); } } add_action( 'set_user_role', 'email_user_role_update', 10, 2);Hope this helps!
Forum: Everything else WordPress
In reply to: Plugin for online consultingThis isn’t so straight forward to be able to achieve it by simply using a plugin.
What I would suggest is using a combination of a membership plugin like Paid Member Subscriptions, and another one that has a front-end posting functionality (in order for your paying members to be able to add and edit pages, posts and custom post types directly from the front-end) like WCK.The only thing that would be left to custom code is the number of consultations a member can post in a certain amount of time, but that shouldn’t be so complicated.
Forum: Fixing WordPress
In reply to: How to hide posts that user is not allowed to see in a list of postsYou should look into Paid Member Subscriptions.
It allows you to create subcription plans and restrict content based on selected subscription (not just logged in status).
By separating users by subscription plans, you can choose what content to display to each subscription. More info here.
Forum: Everything else WordPress
In reply to: Custom Post Type vs Custom TemplateThey are two different things.
One is for structuring content (post type), the other for displaying information (template).Forum: Fixing WordPress
In reply to: password protected page with CaptchaAnother option would be to restrict access to that page to logged-in users for example, and add the Captcha verification to the front-end login form.
Forum: Fixing WordPress
In reply to: How to make a Blog Password ProtectedHi,
Look into Paid Member Subscriptions.It basically allows you to create subscription plans (free & paid) and restrict content based on logged in status or selected subscription plans. Users can pay you via PayPal when signing up for a certain subscription (membership level).
Using a shortcode you can display a front-end register form, where people will sign up and pay for a certain membership level. After doing this and logging in, they will have access to the content tied to their subscription.
Hope this helps.
Thank you so much for your kind words!
Forum: Plugins
In reply to: Paid Memberships Pro and Ultimate MemberWhat you need can be achieved with Paid Member Subscriptions membership plugin and Profile Builder.
They are fully compatible and developed to run smooth together, so you can allow users to register via Profile Builder and select a subscription plan created in Paid Member Subscriptions.
PB user profile will display the selected subscriptions and all the information entered by the user at registration.
Hope this helps.
Forum: Plugins
In reply to: Need a payment membership pluginWith Paid Member Subscriptions you can accept PayPal payments from your members, create subscription plans and restrict content.
You have the option to allow recurring payments via an add-on.
Hope this helps.
You can add it in your active theme’s functions.php file, or even better in an empty plugin like this one.
For user payments you can use our Paid Member Subscriptions – free membership plugin, which integrates and is fully compatible with Profile Builder.
Hi,
Just wanted to let you know we’ve just released a new membership plugin called Paid Member Subscriptions, which integrates and is fully compatible with Profile Builder.I suggest using the two plugins, as they can easily cover the functionality you described above.
You can find out more about Paid Member Subscriptions here.
Best regards,