diff --git a/docs/filters.md b/docs/filters.md
index f444e58..582b6d2 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' => __( '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/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..995fe6f 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,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 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).
- 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/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..ab130dc 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,11 +29,8 @@ 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).
- 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.',
+ 'heading' => 'We hope you love Liquid Web.',
+ '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.',
];
}
@@ -70,7 +67,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 );