Cristián Lávaque
Forum Replies Created
-
@hitsheets, take a look at the documentation here: WP Admin -> s2Member -> Scripting -> Content Dripping
I hope that helps. 🙂
Glad it helped. 🙂
It won’t get lost, it’s not in the files. That’s stored as an option in the database.
As Krumch said, that shortcode seems broken.
The desc attribute seems to have been mixed/combined with the custom attribute. WP Admin -> s2Member -> Stripe Forms -> Shortcode Attributes
I hope that helps. 🙂
This page will unlock in X days (x being the number of days they have left)
Yes, you can achieve that, but instead of protecting the whole page, you’d use a shortcode that checks for that time condition.
See: WP Admin -> s2Member -> Scripting -> Content Dripping
And maybe a bit of PHP code to customize the message with the time left, too.
I hope that helps. 🙂
@VoicOfHair, that is a shortened link, and when I clicked it I got redirected to: http://dominateinstagram.teachable.com/courses/dominate-instagram-course?s2member_register=fnIyOnJDMXY4eVBINkVoTFB4MWNqUUl2M3oxZ0NubHFHUlpYOjEzYmNmMjA5ZGQxZWYzOWY3NmI0M2VjNjRjMWRlZmVlfHQOxpBDJnXo2TF6rmQ4wq2A5dQdhwIB3PWmUCsGhPtY_4rlzII3FMjU73iW5SUlMn1b1O7w52XCA64mBWxPZJjTPqkI3-rL1nHkexv8wq_xMnG9O2XkFH5iHAI7Het4MOq899FVjUd6v_zI2PGyzmhNbSlvM3ryB2yxaOyxvfg_VEQNuMS_JEz1tZgTeCMUqi3J1AtJgyPUMk56xbkvTjU#courses.voiceofhair.com
What exactly is the problem you’re having? Is registration not working for paid members or something of the sort?
Please tell me more details about the issue so I can try to help you sort them out.
I look forward to your update. 🙂
@yiggory, not out of the box, but it may be possible to integrate it using APIs and a bit of custom scripting.
See this article: https://s2member.com/kb-article/can-s2member-be-integrated-with-another-unsupported-payment-gateway-that-i-prefer/
And in the free version see here: WP Admin -> s2Member -> PayPal Options -> IPN -> w/ Proxy Key
I hope that helps. 🙂
Julia, you can’t transfer the subscriptions from one payment gateway to another, you’d need the customers to make the purchase again over at the new one and cancel the previous one.
As esmi said, Pro questions aren’t for this forum, but you can post them over at http://s2member.net/forum and I’ll help as I can. 🙂
Cristián
Yes, you can do that.
To change the content based on the access of the user, you’d use conditionals. See: WP Admin -> s2Member -> Scripting -> Conditionals
I hope that helps. 🙂
I think you should use custom capabilities for the separate courses. See: WP Admin -> s2Member -> Scripting -> Custom Capabilities
I hope that helps. 🙂
Did you check your spam folder to verify it’s not there either?
If you’re not getting the signup confirmation email after paying, then there may be a deliverability issue.
I suggest that you read this article: https://s2member.com/kb-article/troubleshooting-email-delivery-problems/
Do the suggested troubleshooting and see if it helps.
I look forward to your update. 🙂
@elisabeta, that sounds like a Mod Security issue. See: http://s2member.net/mod-security-503-403-errors-166
I hope that helps. 🙂
Webgirl is right.
Try to reactivate s2Member, disable the safeguard, and then remove the plugin again. WP Admin -> s2Member -> General -> Plugin Deletion Safeguards
I hope that helps. 🙂
1. How can I save CSS changes to the wordpress login.php pages (i’m using the one provided by s2memeber)
2. Is it possible to make changes to the footer section of the login.php page (where it says “Register | Forgot Your Password?”. I want to change the words in those sections.
s2Member doesn’t add a new login.php, it customizes the WP one.
You can make your own customizations from: WP Admin -> s2Member -> General -> Registration/Login Design
Look at the bottom of that panel, there’s a section for the Footer.
There you can also add styles between
<style> </style>tags if needed. Or link to a CSS file for that page, like this:<link rel="stylesheet" type="text/css" media="all" href="http://s2member.net/wp-content/themes/s2membernet/wp-login.css" />Use CSS selectors and it should be possible to customize the look quite a bit.
You can see an example over at s2member.net:
http://s2member.net/wp-login.php
I hope that helps. 🙂
Cristián
A way of doing it, with s2If, would be to give that particular user a custom capability (e.g. user1234) that then you check for in the condition.
[s2If current_user_can(access_s2member_ccap_user1234)] Hi 1234 [/s2If]I hope that helps. 🙂