- This topic has 1 reply, 2 voices, and was last updated 6 years, 2 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Welcome to GPLDL - we are still beta - please report any bugs via the contact form.
I installed this wp-plugin called papertemplate which helps to build squeeze pages but I couldn’t activate it. Apparently, the email and licence-key has to match for it to work. I tried deleting some lines of code but it didn’t work.
The PHP code is here
I don’t know this plugin but have you simply tried changing the following?
if ($results) {
if (empty($results) || $results == “UNREGISTERED” || $results == “UNKNOWN” || $results == “CANCELLED” || $results == “FAILED” || $results == “BLOCKED”) {
$validLicense = false;
to
if ($results) {
if (empty($results) || $results == “UNREGISTERED” || $results == “UNKNOWN” || $results == “CANCELLED” || $results == “FAILED” || $results == “BLOCKED”) {
$validLicense = true;