Statistics: Posted by sruefer — May 6th, 2011, 10:21 am
if ($days = get_user_option('s2member_auto_eot_time'))
{
$days = ceil(($days - time()) / 86400);
if ($days < 1)
echo 'Your subscription has expired.';
elseif ($days == 1)
echo 'Your subscription will end tomorrow!';
else
echo 'You have ', $days, ' days left.';
}
Statistics: Posted by Cristián Lávaque — May 5th, 2011, 12:00 pm
Statistics: Posted by Jason Caldwell — May 4th, 2011, 11:33 pm
<?php
if(get_user_option("s2member_auto_eot_time")){
echo "Your paid access will expire soon.";
}
?>
<?php
if($time = get_user_option("s2member_auto_eot_time")){
echo "Your paid access will expire on " . date("F j, Y", $time);
}
?>
Statistics: Posted by Jason Caldwell — May 4th, 2011, 11:12 pm
Statistics: Posted by sruefer — May 4th, 2011, 10:31 pm
There might be times whenever you notice that a Member's Subscription has been cancelled through PayPal®... but, s2Member continues allowing the User access to your site as a paid Member. Please don't be confused by this... in 99.9% of these cases, the reason for this is legitimate. s2Member will only remove the User's Membership privileges when an EOT ( End Of Term ) is processed, a refund occurs, a chargeback occurs, or when a cancellation occurs - which would later result in a delayed Auto-EOT by s2Member. s2Member will not process an EOT until the User has completely used up the time they paid for. In other words, if a User signs up for a monthly Subscription on Jan 1st, and then cancels their Subscription on Jan 15th; technically, they should still be allowed to access the site for another 15 days, and then on Feb 1st, the time they paid for has completely elapsed. At that time, s2Member will remove their Membership privileges; by either demoting them to a Free Subscriber, or deleting their account from the system ( based on your configuration ). s2Member also calculates one extra day ( 24 hours ) into its equation, just to make sure access is not removed sooner than a Customer might expect.
current_user_is(subscriber)
current_user_is(s2member_level1)
current_user_is(s2member_level2)
current_user_is(s2member_level3)
current_user_is(s2member_level4)
Statistics: Posted by Jason Caldwell — May 4th, 2011, 3:22 pm
Statistics: Posted by sruefer — May 3rd, 2011, 12:38 pm
Statistics: Posted by sruefer — May 3rd, 2011, 4:10 am