Statistics: Posted by Cristián Lávaque — November 25th, 2011, 11:24 pm
if ($s2member_auto_eot_time = get_user_field ("s2member_auto_eot_time") ) {
echo '<p><em>Membership expires ';
echo date("F j, Y", $s2member_auto_eot_time);
echo '</em></p>';
}
Statistics: Posted by zauber — November 21st, 2011, 7:24 pm
if (function_exists('$s2member_auto_eot_time')){$s2member_auto_eot_time = $s2member_auto_eot_time = get_user_field ("s2member_auto_eot_time");} ?>
<?php
echo '<p><em>Membership expires ';
echo date("F j, Y", $s2member_auto_eot_time);
echo '</em></p>';
Statistics: Posted by raygulick — November 21st, 2011, 6:10 pm
<?php if (function_exists('$s2member_auto_eot_time')){$s2member_auto_eot_time = $s2member_auto_eot_time = get_user_field ("s2member_auto_eot_time");} ?>
<?php
echo date("j F Y", $s2member_auto_eot_time);
?>
Statistics: Posted by Cristián Lávaque — September 5th, 2011, 12:13 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 — September 5th, 2011, 12:09 am
<?php if (function_exists('$s2member_auto_eot_time')){$s2member_auto_eot_time = $s2member_auto_eot_time = get_user_field ("s2member_auto_eot_time");} ?>
<?php
echo date("j F Y", $s2member_auto_eot_time);
?>
Statistics: Posted by camillemm — September 4th, 2011, 11:26 am
Statistics: Posted by candy — September 4th, 2011, 8:18 am
$eot_time = get_user_field('s2member_auto_eot_time', $user_id);
Statistics: Posted by Cristián Lávaque — September 3rd, 2011, 1:20 pm
Statistics: Posted by candy — September 3rd, 2011, 7:38 am