Cristián Lávaque
Forum Replies Created
-
ten12design, I can help you with the Pro features. Could you start a topic for it here? http://s2member.net/forum
Cristián
Did you check your Spam folder to see if the email is going there?
You mention an activation email, but s2Member doesn’t add an account activation feature. Maybe you have BuddyPress installed too? I know it adds an activation step.
If you’re talking about the New User email, WP stopped sending them when the user can set his own password, but if you make WP set the password for the new user, the email will be sent. You can change that setting from WP Admin -> s2Member -> General -> Registration Options -> Custom Password
I hope that helps. 🙂
bradkerin, I agree with Pat, the Notifications API may be enough for what you want. WP Admin -> s2Member -> Notifications
See also: https://www.youtube.com/watch?v=Xg9nuPwa9_0&list=PLBF914EDFF37EC3E9&index=2
I hope that helps. 🙂
hvorrath, in the s2Member shortcode for the PayPal button, you can set a custom return URL that will be used instead of the default one in PayPal’s settings.
See: WP Admin -> s2Member -> PayPal Buttons -> Shortcode Attributes -> success (This is an s2Member Pro feature)
Use the PayPal setting for the Event Manager’s URL, and the shortcode’s attribute for the s2Member one.
I hope that helps. 🙂
AvalancheIan, you can add a custom capability or change the user’s level role, with a bit of PHP in the thank-you page. See this article: http://s2member.com/kb-article/rolescapabilities-via-php/
You’d need to have a plugin that lets you use PHP in your page’s body, and only use WP’s Text editor (not the Visual one, it’ll break your code). https://wordpress.org/plugins/ezphp/
Just make sure that your thank-you page can only be seen by those who made a purchase, or add some form of validation in your code, so the access is only given to someone that actually purchased it and not just anyone that guesses the address of your thank-you page.
I hope that helps. 🙂
It is possible, but requires some custom code. You’d need to add an interface that allows the user to pick his month’s posts, store them in the database, and have conditionals that checks that before displaying any protected content to him…
You could protect content with s2’s custom capabilities, and check if the user has the proper one to see the content protected with the custom capability.
But the user would have those custom capabilities changed every month, so it’s not something you just sell at the beginning of the subscription and forget about. That’s why you need the customization that lets the user change the custom capabilities each month, adding the new ones, and removing the previous month’s.
This article should help: http://s2member.com/kb-article/rolescapabilities-via-php/
I hope that helps. 🙂
jennblu, like Pat said, WP is not sending the New User email if the user set a custom password during registration. You can change that so WP sets the password and does send the email, though. See: WP Admin -> s2Member -> General -> Registration Options -> Custom Passwords
If you do have custom passwords enabled and there’s no email with the password in your Inbox, though, it’s possible that it went to your Spam folder, did you check there?
merlinbiz, is that password reset link in the wp-login.php? could you give me the URL to your site to take a look?
s2Member doesn’t change the password reset feature, so if you’re having trouble with it, it’s most likely another plugin or the theme.
Looking forward to your update. 🙂
xealpha, could you verify that your PDT configuration is correct? WP Admin -› s2Member -› PayPal Options -› PayPal PDT Integration
See also: http://s2member.net/unable-to-verify-post-vars-error-96
xealpha, this article may help you: http://s2member.net/unable-to-verify-post-vars-error-96
Forum: Plugins
In reply to: [bbPress Votes] Can I disable 'Vote Down'No, don’t modify the plugin, because it’ll be overwritten when you update it and will lose your customization.
If you don’t want to use your theme’s functions.php, you can create this dir/file:
/wp-content/mu-plugins/myhacks.php (https://codex.wordpress.org/Must_Use_Plugins)<?php add_filter('bbpvotes_get_vote_down_link', '__return_false');Make sure there’s nothing before the opening PHP tag, and don’t worry about not having the closing PHP tag.
Does that help? 🙂
Forum: Plugins
In reply to: [bbPress Votes] Can I disable 'Vote Down'Glad it helped. You too! 🙂
Forum: Plugins
In reply to: [bbPress Votes] Can I disable 'Vote Down'Bar Bar, you can try this in your theme’s functions.php file, or a file in your /wp-content/mu-plugins/ folder.
add_filter('bbpvotes_get_vote_down_link', '__return_false');It won’t disable the vote-down functionality, but it will remove the link for it.
I hope that helps. 🙂
Do you have that problem using the default theme, or no other plugins?
I suspect something is conflicting there and not letting the s2 setting work normally.
You can protect content without requiring a payment, just requiring the person to be logged in, for example.
Here’s an article I wrote explaining how you could have an account review/approval process: http://s2member.net/user-review-approval-process/
I hope that helps. 🙂