From cd90e3b75c8085725f4945f1aefe16baf5740599 Mon Sep 17 00:00:00 2001 From: Opeyemi Ibrahim Date: Fri, 2 Feb 2024 11:15:13 +0100 Subject: [PATCH 1/2] :feat: Update banner price --- classes/Admin/AdminBar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Admin/AdminBar.php b/classes/Admin/AdminBar.php index 93ae75a82..145a46364 100644 --- a/classes/Admin/AdminBar.php +++ b/classes/Admin/AdminBar.php @@ -44,7 +44,7 @@ public function get_admin_bar_profile_callback() { if ( $user->is_free() ) { $text = esc_html__( 'Upgrade your plan now for more!', 'rocket' ) . '
' . - esc_html__( 'From $4.99/month only, keep going with image optimization!', 'rocket' ); + esc_html__( 'From $5.99/month only, keep going with image optimization!', 'rocket' ); $button_text = esc_html__( 'Upgrade My Plan', 'rocket' ); $upgrade_link = IMAGIFY_APP_DOMAIN . '/subscription/?utm_source=plugin&utm_medium=notification'; } elseif ( $user->is_growth() ) { From 8edb21bf07a6e3f2308cfb4e0051459419f49ce3 Mon Sep 17 00:00:00 2001 From: Opeyemi Ibrahim Date: Fri, 2 Feb 2024 13:18:52 +0100 Subject: [PATCH 2/2] change upsell banner price #2658 --- views/part-upsell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/part-upsell.php b/views/part-upsell.php index 965f4ac18..8d1633fed 100644 --- a/views/part-upsell.php +++ b/views/part-upsell.php @@ -70,7 +70,7 @@ is_free() ) { $upgrade = esc_html__( 'Upgrade your plan now for more!', 'imagify' ); - $price = esc_html__( 'From $4.99/month only, keep going with image optimization!', 'imagify' ); + $price = esc_html__( 'From $5.99/month only, keep going with image optimization!', 'imagify' ); $upgrade_link = IMAGIFY_APP_DOMAIN . '/subscription/?utm_source=plugin&utm_medium=upsell_banner'; } elseif ( $imagify_user->is_growth() ) { $upgrade = esc_html__( 'Upgrade your plan now to keep optimizing your images.', 'imagify' );