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.

Home Forums Eduan

Eduan

Moderator

My Latest Replies (From Various Topics)

Viewing 25 replies - 1,526 through 1,550 (of 3,367 total)
Author Replies
Author Replies
Posted: Thursday Nov 22nd, 2012 at 10:06 am #32360
Eduan
Username: Eduan
Moderator

Hello Richard,

1. Are s2member having promotions for blackfriday or cybermonday? If yes, how do I get coupon codes for this?

I am not aware of any promotions for s2Member, currently.

2. If I upgrade to the paid version, can I stick with the current free plugin and just use the upgraded support?

Yes you can. :)

Posted: Wednesday Nov 21st, 2012 at 6:08 pm #32284
Eduan
Username: Eduan
Moderator

Well, in order for non-users to see another content, you would simply do the following:

<?php if (S2MEMBER_CURRENT_USER_IS_LOGGED_IN) {
	# Content for logged in users goes here.
	if (S2MEMBER_CURRENT_USER_LOGIN_COUNTER < 1) { ?>

		1st time welcome.
	<?php } elseif (S2MEMBER_CURRENT_USER_LOGIN_COUNTER >= 1) {

		$welcome_page = "http://s2test.mindfolding.com/"; ?>
	
		<script type="text/javascript">
			<!--
			window.location = "<?php echo $welcome_page; ?>"
			-->
		</script>
	<?php }
} else { ?>
	Content for non-logged in users goes here.
<?php } ?>

Hope this helps. :)

Posted: Wednesday Nov 21st, 2012 at 2:10 pm #32266
Eduan
Username: Eduan
Moderator

I don’t think they closed it, this forum closes topics that are inactive for too long. I will open it now so that you can continue the conversation.

Although, just wanted to say, if the users are only having it in IE, then it’s most probably a browser problem, and they’re usually not easy to fix, lol.

– Eduan

Posted: Wednesday Nov 21st, 2012 at 11:29 am #32256
Eduan
Username: Eduan
Moderator

Hello Emily,

No, this has not been integrated yet.

– Eduan

Posted: Wednesday Nov 21st, 2012 at 11:06 am #32253
Eduan
Username: Eduan
Moderator

Glad you solved it Marcus. :)

Posted: Wednesday Nov 21st, 2012 at 10:37 am #32250
Eduan
Username: Eduan
Moderator

Hello Patryk,

Could you please follow these troubleshottig tips:
Knowledge Base » Common Troubleshooting Tips

– Eduan

Posted: Tuesday Nov 20th, 2012 at 10:26 pm #32186
Eduan
Username: Eduan
Moderator

Could you please follow these troubleshooting tips?:
Knowledge Base » Common Troubleshooting Tips

– Eduan

Posted: Tuesday Nov 20th, 2012 at 8:28 pm #32176
Eduan
Username: Eduan
Moderator

Hello Dave,

Well done finding out the problem. :)

I suggest you check into deactivating Object caching if I’m not mistaken, I think that causes problems. I also suggest that you look into deactivating caching for the login and registration page (both are wp-login.php).

BTW, these restriction settings are configured in s2Member under:
Dashboard -› s2Member® -› Restriction Options -› Brute Force IP/Login Restrictions
Dashboard -› s2Member® -› Restriction Options -› Unique IP Access Restrictions

– Eduan

Posted: Tuesday Nov 20th, 2012 at 4:54 pm #32147
Eduan
Username: Eduan
Moderator

Hello Philip,

Currently s2Member doesn’t have any shopping cart, so if you do have a shopping cart we can’t provide any advice. :/

Also, check this article to see what kind of PayPal account you need to accept credit/debit cards: Knowledge Base » PayPal® Services / A Quick Comparison

Also check this article for common troubleshooting tips, in case it helps: Knowledge Base » Common Troubleshooting Tips

Hope this helps. :)

Posted: Tuesday Nov 20th, 2012 at 4:36 pm #32141
Eduan
Username: Eduan
Moderator

Hmm, could you make sure that you have a membership options page. Also, please follow all these common trouble shooting tips: Knowledge Base » Common Troubleshooting Tips

– Eduan

Posted: Tuesday Nov 20th, 2012 at 1:31 pm #32119
Eduan
Username: Eduan
Moderator

Hello Emily,

I’m not sure if this is possible, the best way to know is by trying it, but I don’t have a BuddyPress installation at hand. :/

– Eduan

Posted: Tuesday Nov 20th, 2012 at 10:40 am #32103
Eduan
Username: Eduan
Moderator

Hello Chris,

Is there a way I can test this without purchasing s2Member Pro first?

s2Member pro currently doesn’t offer a trial of some kind I’m afraid.

Also is it possible to purchase a single site license, then upgrade to an unlimited license at a later date?

What would be the cost of this?

Yes this is possible, simply go under My Account and I believe you will see upgrade buttons there. You will only need to pay the difference between the licenses, as if you only bought the upgrade. :)

– Eduan

Posted: Tuesday Nov 20th, 2012 at 9:53 am #32099
Eduan
Username: Eduan
Moderator

Glad you solved the problem Alec! Thanks for the tip BTW. :)

Posted: Tuesday Nov 20th, 2012 at 9:34 am #32093
Eduan
Username: Eduan
Moderator

Hello Leo,

I believe that should work correctly like you want it, don’t know if it’ll have problems because it’s inside the JavaScript, but I don’t think it should. :)

Might I suggest you use the following logic however:

<?php if(S2MEMBER_CURRENT_USER_LOGIN_COUNTER < 1) {?>

	1st time welcome
<?php } elseif(S2MEMBER_CURRENT_USER_LOGIN_COUNTER >= 1) {

	$welcome_page = "http://s2test.mindfolding.com/"; ?>

	<script type="text/javascript">
		<!--
		window.location = "<?php echo $welcome_page; ?>"
		-->
	</script>
<?php } ?>

This would make sure that the structure and logic are correct, and it’s also more readable if somebody else comes along. :)

Hope this helps. ;)

  • This reply was modified 4 years, 1 month ago by  Eduan.
  • This reply was modified 4 years, 1 month ago by  Eduan. Reason: Fixed code
Posted: Tuesday Nov 20th, 2012 at 9:24 am #32090
Eduan
Username: Eduan
Moderator

Hello Marcus,

Congratulations! Well done. :)

I think you are looking for the email_configs class:
http://www.s2member.com/codex/stable/s2member/email_configs/package-summary/

Hope this helps. :)

Posted: Tuesday Nov 20th, 2012 at 9:15 am #32086
Eduan
Username: Eduan
Moderator

Hello Core,

I’m afraid that if you create the field yourself you will need to configure the form in order for it to check if it already exists or not.

If you’re checking for the email or username then that is already checked by WordPress if I’m not mistaken, so you can check if you can achieve the same with your field.

– Eduan

Posted: Tuesday Nov 20th, 2012 at 8:55 am #32083
Eduan
Username: Eduan
Moderator

Hello Wanda,

That seems like very strange behavior. Did you update s2Member recently? And if so, did you also upgrade the pro version?

– Eduan

Posted: Monday Nov 19th, 2012 at 5:16 pm #32017
Eduan
Username: Eduan
Moderator

Hello Amber,

I’m afraid currently s2Member doesn’t integrate with any shopping cart plugins. If you need one then you will need to implement this yourself, or integrate it with a plugin that you like.

I suggest that you hire a freelancer over at jobs.wordpress.net or elance.com

Hope this helps. :)

Posted: Monday Nov 19th, 2012 at 5:14 pm #32016
Eduan
Username: Eduan
Moderator

Then I’m afraid I’m not sure what the problem could be. :/

Posted: Monday Nov 19th, 2012 at 3:16 pm #32007
Eduan
Username: Eduan
Moderator

Here’s an article you can check regarding that error: Knowledge Base » Mod Security, Random 503/403 Errors

Hope this helps. :)

Posted: Monday Nov 19th, 2012 at 3:14 pm #32006
Eduan
Username: Eduan
Moderator

I’m afraid I’m not sure what file you are referring to (don’t know what that file would be)… :/

Sorry I can’t help you any more than I have. :(

– Eduan

Posted: Monday Nov 19th, 2012 at 12:17 pm #31996
Eduan
Username: Eduan
Moderator

Oh I see, I wasn’t aware of that, whoops.

Posted: Monday Nov 19th, 2012 at 12:05 pm #31992
Eduan
Username: Eduan
Moderator

Excellent! Glad you solved the problem. :)

Posted: Monday Nov 19th, 2012 at 12:04 pm #31991
Eduan
Username: Eduan
Moderator

Hello William,

Currently there’s not official confirmation email, however there is a work around. If you don’t let the users choose their own password, they will be sent an email with a password, and that email can be the confirmation email.

You can edit that email under Dashboard -› s2Member® -› General Options -› Email Configuration and choose “Yes ( Customize New User Emails with s2Member )”

Hope this helps. :)

Posted: Sunday Nov 18th, 2012 at 6:35 pm #31955
Eduan
Username: Eduan
Moderator

Yes that is correct, if you upgrade them manually your users will not need to pay, since you would be giving it to them. :)

Viewing 25 replies - 1,526 through 1,550 (of 3,367 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.