Change 100+ order milestone message and CTA.

This commit is contained in:
Jeff Stieler 2019-03-22 09:10:13 -06:00
parent f610223708
commit b9e02d0b61
1 changed files with 2 additions and 2 deletions

View File

@ -237,13 +237,13 @@ class WC_Admin_Notes_Order_Milestones {
)
);
$note->set_content(
__( "Another order milestone! Have you shared news with your subscribers lately? Maybe it's time for an update.", 'woocommerce-admin' )
__( 'Another order milestone! Take a look at your Orders Report to review your orders to date.', 'woocommerce-admin' )
);
$note->set_type( WC_Admin_Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
$note->set_icon( 'trophy' );
$note->set_name( self::ORDERS_MILESTONE_NOTE_NAME );
$note->set_source( 'woocommerce-admin' );
$note->add_action( 'review', __( 'Review processed orders', 'woocommerce-admin' ), '?page=wc-admin#/analytics/orders' );
$note->add_action( 'review-orders', __( 'Review your orders', 'woocommerce-admin' ), '?page=wc-admin#/analytics/orders' );
$note->save();
}
}