1. Link the FastSpring products to the LimeLM products via PHP code - I assume it is via the optional arrays in the PHP - but what names/values should be used?
Well, it depends on how you want to do things. You'll obviously use our article and example code to get you most of the way there.
2. Add custom fields for a timed trial. The dates seem to have to be manually generated for the date field option in the Custom Fields. How would you create a 30 day trial?
Well, using PHP you can set the date to whenever you want. For example:
[///TODO: Use any feature values here$feature_names = array('update_expires');$feature_values = array(date('Y-m-d', strtotime('+30 days')));
Tell me if that helps.