From d163fae6c1732285c7acbd0ca543b987d0e5901b Mon Sep 17 00:00:00 2001 From: Eric Defore Date: Fri, 10 Apr 2026 10:57:25 -0400 Subject: [PATCH 1/2] feat: replace StellarWP logo with Liquid Web logo - Replace stellar-logo.svg with liquid-web-logo.svg - Update logo dimensions to 148x32 to match new aspect ratio - Update alt text and plugin name references to Liquid Web - Update opt-in intro copy to reference Liquid Web community - Update docs and tests to reflect branding changes --- docs/filters.md | 8 ++++---- src/Telemetry/Exit_Interview/Template.php | 6 +++--- src/Telemetry/Opt_In/Opt_In_Template.php | 12 ++++++------ src/resources/images/liquid-web-logo.svg | 22 ++++++++++++++++++++++ src/resources/images/stellar-logo.svg | 12 ------------ tests/wpunit/TemplateTest.php | 16 ++++++++-------- 6 files changed, 43 insertions(+), 33 deletions(-) create mode 100755 src/resources/images/liquid-web-logo.svg delete mode 100644 src/resources/images/stellar-logo.svg diff --git a/docs/filters.md b/docs/filters.md index f444e58..567c4b4 100644 --- a/docs/filters.md +++ b/docs/filters.md @@ -70,10 +70,10 @@ Filter the arguments passed to the opt-in modal. **Default**: ```php $args = [ - 'plugin_logo' => Resources::get_asset_path() . 'resources/images/stellar-logo.svg', - 'plugin_logo_width' => 151, + 'plugin_logo' => Resources::get_asset_path() . 'resources/images/liquid-web-logo.svg', + 'plugin_logo_width' => 148, 'plugin_logo_height' => 32, - 'plugin_logo_alt' => 'StellarWP Logo', + 'plugin_logo_alt' => 'Liquid Web Logo', 'plugin_name' => 'The Events Calendar', 'plugin_slug' => $stellar_slug, 'user_name' => wp_get_current_user()->display_name, @@ -82,7 +82,7 @@ $args = [ 'privacy_url' => '#', 'opted_in_plugins_text' => __( 'See which plugins you have opted in to tracking for', 'stellarwp-telemetry' ), 'heading' => __( 'We hope you love {plugin_name}.', 'stellarwp-telemetry' ), - 'intro' => __( 'Hi, {user_name}.! This is an invitation to help our StellarWP community. If you opt-in, some data about your usage of {plugin_name} and future StellarWP Products will be shared with our teams (so they can work their butts off to improve). We will also share some helpful info on WordPress, and our products from time to time. And if you skip this, that’s okay! Our products still work just fine.', 'stellarwp-telemetry' ), + 'intro' => __( 'Hi, {user_name}.! This is an invitation to help our Liquid Web community. If you opt-in, some data about your usage of {plugin_name} and future Liquid Web Products will be shared with our teams (so they can work their butts off to improve). We will also share some helpful info on WordPress, and our products from time to time. And if you skip this, that’s okay! Our products still work just fine.', 'stellarwp-telemetry' ), ]; ``` ### stellarwp/telemetry/{stellar_slug}/optin_args diff --git a/src/Telemetry/Exit_Interview/Template.php b/src/Telemetry/Exit_Interview/Template.php index 21affee..7f11023 100644 --- a/src/Telemetry/Exit_Interview/Template.php +++ b/src/Telemetry/Exit_Interview/Template.php @@ -57,10 +57,10 @@ protected function get_args( string $stellar_slug ) { $args = [ 'plugin_slug' => $stellar_slug, - 'plugin_logo' => Resources::get_asset_path() . 'resources/images/stellar-logo.svg', - 'plugin_logo_width' => 151, + 'plugin_logo' => Resources::get_asset_path() . 'resources/images/liquid-web-logo.svg', + 'plugin_logo_width' => 148, 'plugin_logo_height' => 32, - 'plugin_logo_alt' => 'StellarWP Logo', + 'plugin_logo_alt' => 'Liquid Web Logo', 'heading' => __( 'We’re sorry to see you go.', 'stellarwp-telemetry' ), 'intro' => __( 'We’d love to know why you’re leaving so we can improve our plugin.', 'stellarwp-telemetry' ), 'uninstall_reasons' => [ diff --git a/src/Telemetry/Opt_In/Opt_In_Template.php b/src/Telemetry/Opt_In/Opt_In_Template.php index 30cc842..af24520 100644 --- a/src/Telemetry/Opt_In/Opt_In_Template.php +++ b/src/Telemetry/Opt_In/Opt_In_Template.php @@ -56,11 +56,11 @@ public function __construct( Status $opt_in_status ) { public function get_args( string $stellar_slug ) { $optin_args = [ - 'plugin_logo' => Resources::get_asset_path() . 'resources/images/stellar-logo.svg', - 'plugin_logo_width' => 151, + 'plugin_logo' => Resources::get_asset_path() . 'resources/images/liquid-web-logo.svg', + 'plugin_logo_width' => 148, 'plugin_logo_height' => 32, - 'plugin_logo_alt' => 'StellarWP Logo', - 'plugin_name' => 'StellarWP', + 'plugin_logo_alt' => 'Liquid Web Logo', + 'plugin_name' => 'Liquid Web', 'plugin_slug' => $stellar_slug, 'user_name' => wp_get_current_user()->display_name, 'permissions_url' => '#', @@ -240,8 +240,8 @@ public function get_intro( $user_name, $plugin_name ) { return sprintf( // Translators: The user name and the plugin name. esc_html__( - 'Hi, %1$s! This is an invitation to help our StellarWP community. - If you opt-in, some data about your usage of %2$s and future StellarWP Products will be shared with our teams (so they can work their butts off to improve). + 'Hi, %1$s! This is an invitation to help our Liquid Web community. + If you opt-in, some data about your usage of %2$s and future Liquid Web Products will be shared with our teams (so they can work their butts off to improve). We will also share some helpful info on WordPress, and our products from time to time. And if you skip this, that’s okay! Our products still work just fine.', 'stellarwp-telemetry' diff --git a/src/resources/images/liquid-web-logo.svg b/src/resources/images/liquid-web-logo.svg new file mode 100755 index 0000000..4c00e27 --- /dev/null +++ b/src/resources/images/liquid-web-logo.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/resources/images/stellar-logo.svg b/src/resources/images/stellar-logo.svg deleted file mode 100644 index 6760180..0000000 --- a/src/resources/images/stellar-logo.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/tests/wpunit/TemplateTest.php b/tests/wpunit/TemplateTest.php index d2ff603..f702c46 100644 --- a/tests/wpunit/TemplateTest.php +++ b/tests/wpunit/TemplateTest.php @@ -17,11 +17,11 @@ class TemplateTest extends WPTestCase { public function get_default_template_data() { return [ - 'plugin_logo' => Resources::get_asset_path() . 'resources/images/stellar-logo.svg', - 'plugin_logo_width' => 151, + 'plugin_logo' => Resources::get_asset_path() . 'resources/images/liquid-web-logo.svg', + 'plugin_logo_width' => 148, 'plugin_logo_height' => 32, - 'plugin_logo_alt' => 'StellarWP Logo', - 'plugin_name' => 'StellarWP', + 'plugin_logo_alt' => 'Liquid Web Logo', + 'plugin_name' => 'Liquid Web', 'plugin_slug' => self::PLUGIN_SLUG, 'user_name' => 'admin', 'permissions_url' => '#', @@ -29,9 +29,9 @@ public function get_default_template_data() { 'privacy_url' => 'https://stellarwp.com/privacy-policy/', 'opted_in_plugins_text' => 'See which plugins you have opted in to tracking for', 'opted_in_plugins' => [], - 'heading' => 'We hope you love StellarWP.', - 'intro' => 'Hi, admin! This is an invitation to help our StellarWP community. - If you opt-in, some data about your usage of StellarWP and future StellarWP Products will be shared with our teams (so they can work their butts off to improve). + 'heading' => 'We hope you love Liquid Web.', + 'intro' => 'Hi, admin! This is an invitation to help our Liquid Web community. + If you opt-in, some data about your usage of Liquid Web and future Liquid Web Products will be shared with our teams (so they can work their butts off to improve). We will also share some helpful info on WordPress, and our products from time to time. And if you skip this, that’s okay! Our products still work just fine.', ]; @@ -70,7 +70,7 @@ static function () { public function test_get_intro() { $expected = $this->get_default_template_data(); - $actual = ( new Opt_In_Template( new Status() ) )->get_intro( 'admin', 'StellarWP' ); + $actual = ( new Opt_In_Template( new Status() ) )->get_intro( 'admin', 'Liquid Web' ); $this->assertIsString( $actual ); $this->assertEquals( $expected['intro'], $actual ); From 6e25f2901a341eba18521bf317e89e6bcb6fbf54 Mon Sep 17 00:00:00 2001 From: Eric Defore Date: Fri, 10 Apr 2026 11:40:20 -0400 Subject: [PATCH 2/2] feat: update opt-in intro copy per marketing feedback --- docs/filters.md | 2 +- src/Telemetry/Opt_In/Opt_In_Template.php | 5 +---- tests/wpunit/TemplateTest.php | 5 +---- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/docs/filters.md b/docs/filters.md index 567c4b4..582b6d2 100644 --- a/docs/filters.md +++ b/docs/filters.md @@ -82,7 +82,7 @@ $args = [ 'privacy_url' => '#', 'opted_in_plugins_text' => __( 'See which plugins you have opted in to tracking for', 'stellarwp-telemetry' ), 'heading' => __( 'We hope you love {plugin_name}.', 'stellarwp-telemetry' ), - 'intro' => __( 'Hi, {user_name}.! This is an invitation to help our Liquid Web community. If you opt-in, some data about your usage of {plugin_name} and future Liquid Web Products will be shared with our teams (so they can work their butts off to improve). We will also share some helpful info on WordPress, and our products from time to time. And if you skip this, that’s okay! Our products still work just fine.', 'stellarwp-telemetry' ), + 'intro' => __( 'Want to help shape the future of Liquid Web by Nexcess software products? Opting in shares anonymous usage data with our team at Liquid Web, giving us the insights we need to keep improving the tools you rely on.', 'stellarwp-telemetry' ), ]; ``` ### stellarwp/telemetry/{stellar_slug}/optin_args diff --git a/src/Telemetry/Opt_In/Opt_In_Template.php b/src/Telemetry/Opt_In/Opt_In_Template.php index af24520..995fe6f 100644 --- a/src/Telemetry/Opt_In/Opt_In_Template.php +++ b/src/Telemetry/Opt_In/Opt_In_Template.php @@ -240,10 +240,7 @@ public function get_intro( $user_name, $plugin_name ) { return sprintf( // Translators: The user name and the plugin name. esc_html__( - 'Hi, %1$s! This is an invitation to help our Liquid Web community. - If you opt-in, some data about your usage of %2$s and future Liquid Web Products will be shared with our teams (so they can work their butts off to improve). - We will also share some helpful info on WordPress, and our products from time to time. - And if you skip this, that’s okay! Our products still work just fine.', + 'Want to help shape the future of Liquid Web by Nexcess software products? Opting in shares anonymous usage data with our team at Liquid Web, giving us the insights we need to keep improving the tools you rely on.', 'stellarwp-telemetry' ), $user_name, diff --git a/tests/wpunit/TemplateTest.php b/tests/wpunit/TemplateTest.php index f702c46..ab130dc 100644 --- a/tests/wpunit/TemplateTest.php +++ b/tests/wpunit/TemplateTest.php @@ -30,10 +30,7 @@ public function get_default_template_data() { 'opted_in_plugins_text' => 'See which plugins you have opted in to tracking for', 'opted_in_plugins' => [], 'heading' => 'We hope you love Liquid Web.', - 'intro' => 'Hi, admin! This is an invitation to help our Liquid Web community. - If you opt-in, some data about your usage of Liquid Web and future Liquid Web Products will be shared with our teams (so they can work their butts off to improve). - We will also share some helpful info on WordPress, and our products from time to time. - And if you skip this, that’s okay! Our products still work just fine.', + 'intro' => 'Want to help shape the future of Liquid Web by Nexcess software products? Opting in shares anonymous usage data with our team at Liquid Web, giving us the insights we need to keep improving the tools you rely on.', ]; }