diff --git a/plugins/woocommerce-admin/readme.txt b/plugins/woocommerce-admin/readme.txt index 579f010118c..daba9fb9c37 100644 --- a/plugins/woocommerce-admin/readme.txt +++ b/plugins/woocommerce-admin/readme.txt @@ -71,6 +71,9 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt 2. Activity Panels 3. Analytics +== Unreleased == +- Tweak: update the content and timing of the NeedSomeInspiration note. #6076 + == Changelog == == 1.9.0 1/15/2021 == diff --git a/plugins/woocommerce-admin/src/Notes/NeedSomeInspiration.php b/plugins/woocommerce-admin/src/Notes/NeedSomeInspiration.php index bd908030a86..cc16ee32e12 100644 --- a/plugins/woocommerce-admin/src/Notes/NeedSomeInspiration.php +++ b/plugins/woocommerce-admin/src/Notes/NeedSomeInspiration.php @@ -29,8 +29,8 @@ class NeedSomeInspiration { * @return Note */ public static function get_note() { - // We want to show the note after five days. - if ( ! self::wc_admin_active_for( 5 * DAY_IN_SECONDS ) ) { + // We want to show the note after 4 days. + if ( ! self::wc_admin_active_for( 4 * DAY_IN_SECONDS ) ) { return; } @@ -56,8 +56,8 @@ class NeedSomeInspiration { } $note = new Note(); - $note->set_title( __( 'Do you need some inspiration?', 'woocommerce-admin' ) ); - $note->set_content( __( 'Check some of our favorite customer stories from entrepreneurs, agencies, and developers in our global community.', 'woocommerce-admin' ) ); + $note->set_title( __( 'Browse our success stories', 'woocommerce-admin' ) ); + $note->set_content( __( 'Learn more about how other entrepreneurs used WooCommerce to build successful businesses.', 'woocommerce-admin' ) ); $note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->set_name( self::NOTE_NAME ); $note->set_content_data( (object) array() );