Community Support Forums — WordPress® ( Users Helping Users ) — 2011-06-15T01:18:18-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=570 2011-06-15T01:18:18-05:00 http://www.primothemes.com/forums/viewtopic.php?t=570&p=20786#p20786 <![CDATA[Re: EOT date and paypal message]]> Please see my reply here:
viewtopic.php?f=4&t=10100&p=20785#p20785

Statistics: Posted by Jason Caldwell — June 15th, 2011, 1:18 am


]]>
2011-06-14T11:50:43-05:00 http://www.primothemes.com/forums/viewtopic.php?t=570&p=20709#p20709 <![CDATA[Re: EOT date and paypal message]]> viewtopic.php?f=4&t=10100&p=20705#p20705

Statistics: Posted by Cristián Lávaque — June 14th, 2011, 11:50 am


]]>
2010-08-17T17:11:50-05:00 http://www.primothemes.com/forums/viewtopic.php?t=570&p=2414#p2414 <![CDATA[Re: EOT date and paypal message]]>
Here is how I would handle this:

1. Whenever you create your PayPal® Button Shortcode, use the "Buy Now / Lifetime" option down at the very bottom of the drop-down menu. Then change the desc="" attribute in your Shortcode; removing references to "Lifetime". Then proceed to step #2.

2. Place a code snippet like this into the functions.php file for your WordPress theme:
Code:
add_action(
"ws_plugin__s2member_during_configure_user_registration_front_side",
"my_fixed_EOT_time"
);

function my_fixed_EOT_time($vars)
   {
      $expire_on = strtotime("YYYY-MM-DD");
      update_user_option ($vars["user_id"], "s2member_auto_eot_time", $expire_on);
   }

Just change the [ YYYY-MM-DD ] part. You could also add some conditional checks into your routine, to adjust the expiration dynamically, based on the current date, and/or any other factors that you would like to consider. If you are testing this script, you can do print_r($vars) to get a full list of ALL defined variables that you have a reference to. There are MANY of them. $vars["user_id"] is just one.

Statistics: Posted by Jason Caldwell — August 17th, 2010, 5:11 pm


]]>
2010-08-16T16:09:58-05:00 http://www.primothemes.com/forums/viewtopic.php?t=570&p=2325#p2325 <![CDATA[EOT date and paypal message]]> Statistics: Posted by dexterinteractive — August 16th, 2010, 4:09 pm


]]>