Skip to content

Updated Pricing Page and External Activation Support

Choose a tag to compare

@swashata swashata released this 16 Jun 08:34
20358d1

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.

CleanShot 2026-06-16 at 13 51 31@2x

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.