An addition to this would be to display
FREE in the cost drop-down instead of being blank. This can be done with the following:
In
./subscriptions.php, find:
PHP Code:
$subscription['cost'] = $string;
and
above this:
PHP Code:
if ($string == '')
{
$string .= "<option value=\"\" >FREE</option>\n";
}
Save and upload.
This works for me on 3.0.7. Thanks for this modification!