Set up S2member as a simple email opt in?

Is it possible to set up S2 to simply collect emails as the opt in requirement to collect a free gift?
Thanks for your help,
Christopher

You can do it if you use a conditional that the visitor has to be logged in to access the download link. I use that on my site where the code looks like this:

[s2If !is_user_logged_in()]You need to be logged in to download this sample. You can either login, or register on the top of this page.[/s2If]
[s2If is_user_logged_in()]To download this sample, just click HERE[/s2If]

So for someone who is not logged in, they will see

You need to be logged in to download this sample. You can either login, or register on the top of this page.

but if they are logged in, they will see

To download this sample, just click HERE

And obviously, they need to have an account to log in, and they need to have their email address entered to create their account. Then, you can just integrate with your email system and voilà!

1 Like