From b97d2ed50eeaa04f3941c417e8236510856a2bed Mon Sep 17 00:00:00 2001 From: barryhughes <3594411+barryhughes@users.noreply.github.com> Date: Wed, 21 Jul 2021 07:45:28 -0700 Subject: [PATCH] Update setting text per feedback. --- includes/admin/settings/class-wc-settings-products.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/includes/admin/settings/class-wc-settings-products.php b/includes/admin/settings/class-wc-settings-products.php index 2e4d0fbad17..fdd8072a2ae 100644 --- a/includes/admin/settings/class-wc-settings-products.php +++ b/includes/admin/settings/class-wc-settings-products.php @@ -387,11 +387,15 @@ class WC_Settings_Products extends WC_Settings_Page { ), array( - 'desc' => __( 'Allow using redirect mode as a last resort', 'woocommerce' ), + 'desc' => __( 'Allow using redirect mode (insecure) as a last resort', 'woocommerce' ), 'id' => 'woocommerce_downloads_redirect_fallback_allowed', 'type' => 'checkbox', 'default' => 'no', - 'desc_tip' => __( 'If the "Force Downloads" or "X-Accel-Redirect/X-Sendfile" download method is selected but does not work, the system will use the "Redirect" method as a last resort.', 'woocommerce' ), + 'desc_tip' => sprintf( + /* translators: %1$s is a link to the WooCommerce documentation. */ + __( 'If the "Force Downloads" or "X-Accel-Redirect/X-Sendfile" download method is selected but does not work, the system will use the "Redirect" method as a last resort. See this guide for more details.', 'woocommerce' ), + 'https://docs.woocommerce.com/document/digital-downloadable-product-handling/' + ), 'checkboxgroup' => 'start', 'autoload' => false, ),