From 1bac3ae62ce807216b3aa7fb20ca8faecc6ff303 Mon Sep 17 00:00:00 2001 From: Job Date: Thu, 5 Mar 2020 11:35:13 +0200 Subject: [PATCH 1/2] Updated the Help & Support tab The Help & Support tab didn't correspond in terminology to what we're using on WooCommerce.com. Notable changes: * "Helpdesk" --> "WooCommerce.com Support" * URL for getting help on WooCommerce.com updated * More active voice in instructions --- includes/admin/class-wc-admin-help.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/admin/class-wc-admin-help.php b/includes/admin/class-wc-admin-help.php index d5d6cfddca1..e903b3497f0 100644 --- a/includes/admin/class-wc-admin-help.php +++ b/includes/admin/class-wc-admin-help.php @@ -49,12 +49,12 @@ class WC_Admin_Help { ) . '

' . '

' . sprintf( /* translators: %s: Forum URL */ - __( 'For further assistance with WooCommerce core you can use the community forum. If you need help with premium extensions sold by WooCommerce, please use our helpdesk.', 'woocommerce' ), + __( 'For further assistance with WooCommerce core, use the community forum. For help with premium extensions sold on WooCommerce.com, open a support request at WooCommerce.com.', 'woocommerce' ), 'https://wordpress.org/support/plugin/woocommerce', - 'https://woocommerce.com/my-account/tickets/?utm_source=helptab&utm_medium=product&utm_content=tickets&utm_campaign=woocommerceplugin' + 'https://woocommerce.com/my-account/create-a-ticket/?utm_source=helptab&utm_medium=product&utm_content=tickets&utm_campaign=woocommerceplugin' ) . '

' . - '

' . __( 'Before asking for help we recommend checking the system status page to identify any problems with your configuration.', 'woocommerce' ) . '

' . - '

' . __( 'System status', 'woocommerce' ) . ' ' . __( 'Community forum', 'woocommerce' ) . ' ' . __( 'WooCommerce helpdesk', 'woocommerce' ) . '

', + '

' . __( 'Before asking for help, we recommend checking the system status page to identify any problems with your configuration.', 'woocommerce' ) . '

' . + '

' . __( 'System status', 'woocommerce' ) . ' ' . __( 'Community forum', 'woocommerce' ) . ' ' . __( 'WooCommerce.com support', 'woocommerce' ) . '

', ) ); From 1cd3ae008872a3d83eadcb0f27c46390501f2992 Mon Sep 17 00:00:00 2001 From: Job Date: Thu, 5 Mar 2020 11:39:08 +0200 Subject: [PATCH 2/2] Remove the "Education" tab from Help We still had an education tab there, but we have no active agreements with any of the recommended resources. I think we can just delete thme from core. --- includes/admin/class-wc-admin-help.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/includes/admin/class-wc-admin-help.php b/includes/admin/class-wc-admin-help.php index e903b3497f0..334055900b0 100644 --- a/includes/admin/class-wc-admin-help.php +++ b/includes/admin/class-wc-admin-help.php @@ -71,17 +71,6 @@ class WC_Admin_Help { ) ); - $screen->add_help_tab( - array( - 'id' => 'woocommerce_education_tab', - 'title' => __( 'Education', 'woocommerce' ), - 'content' => - '

' . __( 'Education', 'woocommerce' ) . '

' . - '

' . __( 'If you would like to learn about using WooCommerce from an expert, consider a WooCommerce course to further your education.', 'woocommerce' ) . '

' . - '

' . __( 'Further education', 'woocommerce' ) . '

', - ) - ); - $screen->add_help_tab( array( 'id' => 'woocommerce_onboard_tab',