Skip to content
R.Brown edited this page Sep 3, 2019 · 6 revisions

GDPR: How to update user consent

Plugin or theme developer is responsible to collect user's consent to process data using Labs64 NetLicensing services. See more at https://wordpress.org/plugins/pluginpass-pro-plugintheme-licensing/ (Controller’s Responsibilities) Without valid user's consent, NetLicensing validation call will be bypassed and plugin/theme instance won't be validated, therefore.

After collecting user's consent, the consent timestamp can be saved for further use in the database using the following code snippet:

$quard = new \PluginPass\Inc\Common\PluginPass_Guard( $api_key, $product_number, $plugin_folder );
$quard->set_consent();

Track plugin/theme usage

You can list all customers for a particular product by opening product details and clicking on customers link

Customers list view will be opened and filtered by the chosen product.

Here you can search and access single customers details, change status or even delete customer record.

Manage customers' licenses

On the Customer detail page, you can review Customer Name (WordPress instance name), Customer Number (WordPress URL) and available Licenses. You can also access License details, change status or even delete license record.

Disable plugin on customer's WordPress instance

You can deactivate customer WordPress instance from being validated by opening the chosen Customer and change the status to "Inactive". Note: You plugin installed on the customer's WordPress instance might be still validated during the validity of TTL (Time-To-Live) attribute defined at Settings page on the "General" tab.