Update setting text per feedback.
This commit is contained in:
parent
583130531c
commit
b97d2ed50e
|
@ -387,11 +387,15 @@ class WC_Settings_Products extends WC_Settings_Page {
|
||||||
),
|
),
|
||||||
|
|
||||||
array(
|
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',
|
'id' => 'woocommerce_downloads_redirect_fallback_allowed',
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'default' => 'no',
|
'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. <a href="%1$s">See this guide</a> for more details.', 'woocommerce' ),
|
||||||
|
'https://docs.woocommerce.com/document/digital-downloadable-product-handling/'
|
||||||
|
),
|
||||||
'checkboxgroup' => 'start',
|
'checkboxgroup' => 'start',
|
||||||
'autoload' => false,
|
'autoload' => false,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue