diff --git a/includes/admin/settings/class-wc-settings-emails.php b/includes/admin/settings/class-wc-settings-emails.php index 3774fef6a16..28141816813 100644 --- a/includes/admin/settings/class-wc-settings-emails.php +++ b/includes/admin/settings/class-wc-settings-emails.php @@ -46,14 +46,19 @@ class WC_Settings_Emails extends WC_Settings_Page { * @return array */ public function get_settings() { + $desc_help_text = sprintf( + /* translators: %1$s: Link to WP Mail Logging plugin, %2$s: Link to Email FAQ support page. */ + __( 'To ensure your store’s notifications arrive in your and your customers’ inboxes, we recommend connecting your email address to your domain and setting up a dedicated SMTP server. If something doesn’t seem to be sending correctly, install the WP Mail Logging Plugin or check the Email FAQ page.', 'woocommerce' ), + 'https://wordpress.org/plugins/wp-mail-logging/', + 'https://docs.woocommerce.com/document/email-faq' + ); $settings = apply_filters( 'woocommerce_email_settings', array( array( 'title' => __( 'Email notifications', 'woocommerce' ), - 'desc' => __( 'Email notifications sent from WooCommerce are listed below. Click on an email to configure it. - - To ensure your store’s notifications arrive in your and your customers’ inboxes, we recommend connecting your email address to your domain and setting up a dedicated SMTP server. If something doesn’t seem to be sending correctly, install the WP Mail Logging Plugin. Learn more and see troubleshooting steps here.', 'woocommerce' ), + /* translators: %s: help description with link to WP Mail logging and support page. */ + 'desc' => sprintf( __( 'Email notifications sent from WooCommerce are listed below. Click on an email to configure it.
%s', 'woocommerce' ), $desc_help_text ), 'type' => 'title', 'id' => 'email_notification_settings', ),