Updated Pricing Page and External Activation Support
Version 2.13.2 is a maintenance release focused on updating internal dependencies and supporting more complex activation flows.
Updated Pricing Page
In this release, we updated the pricing page to support newly introduced currencies.
External Activation
We opened the install_with_new_user method to synchronize activation with the Freemius WP SDK in cases where activation happens outside the regular opt-in flow.
For example, if you're using an external licensing server with our API, then after activating the license, you can call the method as follows:
my_fs()->install_with_new_user(
$result['user_id'],
$result['user_public_key'],
$result['user_secret_key'],
$result['is_marketing_allowed'],
null,
true,
$result['install_id'],
$result['install_public_key'],
$result['install_secret_key'],
false
);Here, $result represents the object returned by the API endpoint.