latest stable versions: v150827 (changelog)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

cassel


My Latest Replies (From Various Topics)

Viewing 25 replies - 51 through 75 (of 644 total)
Author Replies
Author Replies
Posted: Thursday Dec 12th, 2013 at 8:38 am #61874
cassel
Username: cassel

Hi David,
Here is what I would do.
If your registration to the event is done out of the s2M system, that would be a challenge, but if you can have s2M somewhat involved here could be a way to do it.

1- have a page where you could sell the registration to the event itself.
2- on the registration/purchase button, include a custom capability like Event2013 or a name that would identify the particular event.
3- you can then create a page for them, and have it protected (in the top right box, when you create the page in WP) with the ccap called Event2013. This means that those who made the purchase on #2 and got the ccap will then be able to access the content of that page.
4- alternatively, you could protect the content with conditional instead. Then, your code, in the page, could look like this:

[s2If current_user_can(access_s2member_ccap_Event2013)]
Display the page with the content you want them to see
[/s2If]
[s2If !current_user_can(access_s2member_ccap_Event2013)]
You could include a sale pitch here and a link to the page where they could register for the event.
[/s2If]

Would that work?

Posted: Wednesday Dec 11th, 2013 at 8:05 pm #61842
cassel
Username: cassel

Funny how we both added Frank as another name!

Posted: Wednesday Dec 11th, 2013 at 6:29 pm #61834
cassel
Username: cassel

Since you create the accounts manually, maybe you can use ccaps and limit the “Dave” user to any content with “Dave” as ccaps. This content can then be the link to Dave.mp3
Then, you just use a conditional so that this person can only see the content assigned to their own ccaps.

Something like this:

[s2If current_user_can(access_s2member_ccap_Mike)]
Display all of Mike’s files
[/s2If]
[s2If current_user_can(access_s2member_ccap_Jon)]
Display all of Jon’s files
[/s2If]
[s2If current_user_can(access_s2member_ccap_Dave)]
Display all of Dave’s files
[/s2If]
[s2If current_user_can(access_s2member_ccap_Frank)]
Display all of Frank’s files
[/s2If]

Would that work?

Posted: Monday Dec 9th, 2013 at 1:41 pm #61779
cassel
Username: cassel

I am still not sure. I don’t know if s2m can monitor a “first login” in any way, however, it can be coded to show specific offers to specific users.

If you had a code like this:

[s2If !current_user_can(access_s2member_level2)]
Show the OTO
[/s2If]

That would show the OTO to anyone who is not a level 2 member. Conversely, if you want something specific to Level 1 members who want to go to level 2, you could have

[s2If current_user_can(access_s2member_level1) AND !current_user_can(access_s2member_level2)]
OTO offer for Level 1 members only
[/s2If]

And if you want something for those who are NOT even level 1 to bypass level 1 to go to level 2, you can try this:

[s2If is_user_logged_in() AND !current_user_can(access_s2member_level1) AND !current_user_can(access_s2member_level2)]
OTO offer for Level 0 members only
[/s2If]

And you can also put all those 3 conditionals on the single page, so whoever shows up on the site, will have the offer that matches their specific level.

Would that work, or am I still understanding wrong?

Posted: Sunday Dec 8th, 2013 at 9:57 am #61759
cassel
Username: cassel

Since s2M is not set up as a shopping cart, I am not aware of any way to select more than one item to purchase at the time.

Since those purchases would not be contingent upon a level or a custom capability, did you consider a cart plugin just for those? I cannot recommend any as I never used one but maybe that would be where to look?

Posted: Sunday Dec 8th, 2013 at 9:54 am #61758
cassel
Username: cassel

I don’t think there is a lead generator integrated into s2Member, but I agree it would be a great feature to add.

For lead capture, I have integrated MailChimp and using a third party plugin, when the user registers through the MC form, it automatically creates an s2M account, so I can then use the conditional to let them watch or read whatever I have hidden.

The process is not al fluid as I would like because the user will not be brought back to the page they were reading. I am looking into this through but I have not found a solution yet. But I have a free ebook to download and this link is included in the welcome email from MC.

In case you want to look into it, the third party plugin is called s2M+MC and you can find more information here.

Hope it helps.

Posted: Sunday Dec 8th, 2013 at 9:44 am #61757
cassel
Username: cassel

Maybe you can use some kind of conditionals so that the offer only appears to people NOT at level 2 or something like that?

Posted: Sunday Dec 8th, 2013 at 9:22 am #61755
cassel
Username: cassel

You might want to send a direct request using the support form for technical questions like this. It seems that this forum has moved from tech support to community support. Since this is quite technical, I suspect you might get a faster answer through the ticket system.
https://www.s2member.com/contact/?s2-ssl=yes

  • This reply was modified 3 years, 1 month ago by  cassel.
Posted: Wednesday Dec 4th, 2013 at 6:09 am #61607
cassel
Username: cassel

Is the email confirmation from s2M or from MailChimp?

Posted: Tuesday Dec 3rd, 2013 at 5:47 pm #61599
cassel
Username: cassel

OK Bruce. As far as coding is concerned, I am not a coder which is why I use a web editor to create my “formatting” and then copy and paste it! Would you have access to a simple web editor that works a little like a text editor where you can format the way you want, and then, copy the code?

From the images you posted, I would suggest you create individual pages:
– the INDEX page (or the table of content) can be one page and it can be visible only for logged in members for example using conditionals
– then, each video/lesson can be on a separate page, linked to the index page and again, protected with conditionals so only those registered to them can access them.

I would suggest you check out my site and subscribe, at least to see how I have set my videos (that you can see in the Master Classes section). It is pretty easy once you have a “format”, you can just reuse it over and over again.

Posted: Tuesday Dec 3rd, 2013 at 3:24 pm #61592
cassel
Username: cassel

Yes, you don’t have to store all the videos on your host through the s2m installation. I host mine on AmazonS3 and I have not yet paid more than $5 (although it depends on the useable and bandwidth).

Posted: Tuesday Dec 3rd, 2013 at 3:20 pm #61591
cassel
Username: cassel

How did you set that? Can you give me some tips?

S2Member integrates with Aweber and MailChimp (I am using MailChimp myself). I simply created an autoresponder that will send a set email, a couple of weeks before the end of the initial period (for me, it is a 3 months period). I just explain that the 3 month period they paid for is about to finish and a recurring payment will soon appear on their Paypal account, so if they want to cancel, they have a couple of weeks to do so. Although MailChimp can be free, if you want to use the auto-responder, you have to pay, so depending on how many members you have, the fee will vary.

My other question is that I have the Pro and I want a member to be able to upgrade from Level 0 (free) to Level 1 (free also).

Here, I am not entirely sure because I have not used it. I seem to remember seeing somewhere about having a free level 1. You might want to search that. In any case, if you want to offer that option only to level 0 members, you can use a conditional and create a button (or pro-form) that will only display if someone is already a level 0 member. This means that a newcomer would not be able to go straight to level 1, and a level 1 would not have any option available (since they don`t need it anyways).
I hope it helps some.

Posted: Monday Dec 2nd, 2013 at 10:57 pm #61581
cassel
Username: cassel

I was not even aware it was possible to have a coupon used for a limited number of times. I guess maybe with coding, it can be done. Way too advanced for me. I’ll keep an eye on this though.

Posted: Monday Dec 2nd, 2013 at 10:55 pm #61580
cassel
Username: cassel

Hi I want to buy the S2member Pro but I do not see anywhere how the member will upgrade himself (from the frontend) to an upper level. I meant a subscriber should be able to upgrade to level1 and a paid member too should be allowed to upgrade from level1 to level2.

My guess is that you would have to have a page with a button of some kind that the member can click to “purchase” a higher level registration. You can create a MyAccount page that would simply use conditionals and make it look like it is a backend.

The second question is: how the recurrent payment works? I meant if a set paid level1 membership for 39.99 for 1 month, the member should receive a notice 3 days before the expiration and if he does not cancel it, his account should be debited and his membership renew automatically. Is it how S2member works?

So far, s2Member does not have the option to send emails or notice. If you want to, you can use a mailing service provider that has an autoresponder and it can send a notice like 27 days after registration (or something like that) to inform the member that he will see a recurring payment being processed and he has 3 days to cancel if he chooses. I am using that method.

Last question: How to display the levels (with my labels) on the registration form to allow members to choose their levels? The member will be redirected to PayPal if he chooses a paid level.

I think there is a new feature in the Pro-form that allows you to create a drop down list of different level/payment options. I have not used this feature as I don’t need it, but it was added very recently for that purpose.

Hope this helps.

Posted: Monday Dec 2nd, 2013 at 10:49 pm #61579
cassel
Username: cassel

I have a site with a couple of hundreds of video tutorials. S2Member is perfect for that (even the free version so you can test it).

You would likely have to create a page per video, unless you have a few that go together, in which case you would protect the whole content (you access it or you don’t).

There are different ways you can go about displaying and protecting content. I am using a few but there are more.
– once a member is registered and logged in, I set up a My Account page where it displays all the classes available (in greyscale) and the classes they HAVE access (in colors)
– once a member has paid for one course that has dripped content, I have an “index” page with a thumbnail of all the tutorials available as they become available; so if you start, you have 22 thumbnails, after 2 years, you have over a hundred, and they are linked to the individual video tutorials (you cannot see it as it is only when enrolled)
– you can also have several videos on the same page and using the conditionals, you can display either a sale pitch, or the actual videos (check out the Calendar Class)
– you can have different content displayed depending on the viewer’s status: I have a big sale pitch if you are not logged in; a free tutorial but an upsell pitch if you are logged in without having purchased the package; or the video and the download links if you purchased the package (check out the first Master Class)

You can check on my site: http://scrapbookcampus.com and browse around. S2Member is pretty powerful and should be able to meet your needs.

Posted: Sunday Dec 1st, 2013 at 8:52 am #61548
cassel
Username: cassel

Did you try uploading directly from your WP?
I have mine installed since a couple of years, so I don’t really remember exactly how it was done, but I don’t remember having to go through Filezilla or something like that.

Posted: Sunday Dec 1st, 2013 at 8:47 am #61547
cassel
Username: cassel

I am not sure if that is what you are looking for but in the WP dashboard, on the left, go to Users and you will get everything there: name, email, level, ccaps, etc.

Posted: Saturday Nov 30th, 2013 at 2:54 pm #61524
cassel
Username: cassel

And if it is a ghost registration (like a bot or something odd like that), they won’t complain!

Posted: Friday Nov 29th, 2013 at 10:54 pm #61517
cassel
Username: cassel

This might or might not help but did you have a hidden page with a test button somewhere? Or maybe a place where someone could have made a “purchase” for free?

Posted: Friday Nov 29th, 2013 at 10:52 pm #61516
cassel
Username: cassel

I am using s2Member pro et Headway Theme since over 2 years, without any problem. I have to admit that for now, my active site still runs HT 2.0.13 since I cannot upgrade to 3.x
I don’t expect any problem with the version 3.x either.

Posted: Thursday Nov 28th, 2013 at 10:01 pm #61489
cassel
Username: cassel

Oh I see. I thought the Insiders were actual registered members. I see that my suggestion would not apply.
I have never dealt with Clickbank so I don’t know how they rule, but you can surely create several pages within s2M with your content. How would those integrate with Clickbank is something I can’t help.

Hopefully someone who has used Clickbank in a similar manner (or someone just very knowledgeable) will come and answer your question.

Posted: Thursday Nov 28th, 2013 at 9:39 pm #61484
cassel
Username: cassel

Depending on how those members can be identified, you might want to use ccaps and conditionals.

For example, you can have a ccap for the insiders and AS LONG AS THEY ARE LOGGED IN, the system can recognize them, so you can have your content this way:

[s2If current_user_can(access_s2member_ccap_insider)]
Display the content with the Insider price.
[/s2If]
[s2If !current_user_can(access_s2member_ccap_insider)]
Display the content with the regular or launch week price.
[/s2If]

Would that work for you?

Posted: Wednesday Nov 27th, 2013 at 11:38 pm #61448
cassel
Username: cassel

Could you just replace the content of the Welcome page to the content you want to show the newly logged in member? You don’t have to have a Welcome message in the Welcome page, as far as I know.

Posted: Wednesday Nov 27th, 2013 at 11:22 am #61439
cassel
Username: cassel

I find that if the user is not logged in, the system does not know how to associate the new purchase to the existing account. That is why it will ask to create an account. However, if the user is logged in, then the button or pro-form will do all the work on the associated account.

This is why I ended up having to protect the button/pro-form within conditional so that only the logged in members (with an existing account already) can see it and use it. This prevents the situation where the user would click a button without being logged in and the system not able to put 2 and 2 together.

So the button/content could look like this:

[s2If is_user_logged_in()]
[s2Member-PayPal-Button level="1" ccaps="" desc="Student / Description and pricing details here." ps="paypal" lc="" cc="USD" dg="0" ns="1" custom="yoursite.com" ta="0" tp="0" tt="D" ra="0.01" rp="1" rt="M" rr="1" rrt="" rra="1" image="default" output="button" /]
[/s2If]
[s2If !is_user_logged_in()]
Please log in to complete your purchase.
[/s2If]
Posted: Tuesday Nov 26th, 2013 at 9:32 pm #61418
cassel
Username: cassel

I found a “solution” to remove the Checkout Option altogether, at least for me, so it might help others.
1- upgrade to 131126 version
2- in the General Option > CSS/JS Lazy Loading set the option to NO

This will apparently disable the automatic Checkout option (i didn’t check if you can get it back with wrapping the shortcode inside a shortcode though), but for me, i didn’t need the options.

Viewing 25 replies - 51 through 75 (of 644 total)

Old Forums (READ-ONLY): The community now lives at WP Sharks™. If you have an s2Member® Pro question, please use our new Support System.

Contacting s2Member: Please use our Support Center for bug reports, pre-sale questions & technical assistance.