diff --git a/start.php b/start.php index 9b02a1f2..a86d7ae8 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.12.1'; + $this_sdk_version = '2.12.1.1'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/templates/forms/subscription-cancellation.php b/templates/forms/subscription-cancellation.php index 7a02fde3..6564f68f 100644 --- a/templates/forms/subscription-cancellation.php +++ b/templates/forms/subscription-cancellation.php @@ -34,11 +34,17 @@ $subscription_cancellation_text = ''; } else { $subscription_cancellation_text = sprintf( - fs_text_inline( - "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site.", - 'deactivation-or-uninstall-message', - $slug - ), + ( $fs->is_theme() ? + fs_text_inline( + "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site.", + 'deactivation-or-uninstall-message', + $slug + ) : + fs_text_inline( + "Uninstalling the %s will automatically disable the license, which you'll be able to use on another site.", + 'uninstall-message', + $slug + ) ), $module_label ) . ' '; }