You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* translators: 1 is starting bold tag, 2 is ending bold tag, 3 is the starting bold tag, 4 is the limit number, 5 is ending bold tag, 6 is the starting anchor tag for the docs link on how we count visits, 7 is the ending anchor tag. */
1624
+
/* translators: 1 is the starting bold tag, 2 is the ending bold tag, 3 is the starting bold tag, 4 is the limit number, 5 is ending bold tag, 6 is the starting anchor tag for the docs link on how we count visits, 7 is the ending anchor tag. */
1625
1625
__( '%1$sOptimize unlimited images%2$s for up to %3$s monthly %4$svisitors%5$s - completely FREE.', 'optimole-wp' ),
1626
1626
'<strong>',
1627
1627
'</strong>',
@@ -2077,7 +2077,7 @@ private function get_dashboard_strings() {
2077
2077
'exceed_plan_quota_notice_start_action' => __( 'Yes, Transfer to Optimole Cloud', 'optimole-wp' ),
2078
2078
'exceed_plan_quota_notice_secondary_action' => __( 'No, keep images on my website', 'optimole-wp' ),
'plan_update_notice_desc' => __( 'We\'ve changed how plans work. Users on Optimole Free plan can not offload new image. Existing images that are already offloaded will remain offloaded.', 'optimole-wp' ),
2080
+
'plan_update_notice_desc' => __( 'We\'ve changed how plans work. Users on the Optimole Free plan cannot offload new images. Existing images that are already offloaded will remain offloaded.', 'optimole-wp' ),
2081
2081
'upgrade_to_use_offloading_notice_desc' => __( 'Offloading images is a PRO feature. Please upgrade your plan to enable image transfer to Optimole Cloud.', 'optimole-wp' ),
2082
2082
],
2083
2083
'help' => [
@@ -2350,21 +2350,21 @@ private function get_active_notices_count() {
2350
2350
}
2351
2351
2352
2352
/**
2353
-
* Mark the users that are on free plan and have offload enabled.
2353
+
* Mark if the user had offloading enabled on first run.
2354
2354
*
2355
-
* Used for displaying a notice after plugin update about offload restrictions.
2355
+
* If it is an old free user that had offloading enabled, we will use the mark to show a notice about the plan changes.
2356
2356
*
2357
2357
* @return void
2358
2358
*/
2359
-
publicfunctionmark_free_user_with_offload() {
2359
+
publicfunctionmark_user_with_offload() {
2360
2360
if ( ! $this->settings->is_connected() ) {
2361
2361
return;
2362
2362
}
2363
2363
2364
-
if ( false !== get_option( 'optml_free_user_with_offload', false ) ) {
2364
+
if ( false !== get_option( 'optml_has_offloading_enabled_on_upgrade', false ) ) {
0 commit comments