2020-01-13 13:27:25 +00:00
< ? php
/**
* Admin View : Notice - Redirect only download method is selected .
*
* @ package WooCommerce\Admin\Notices
*/
defined ( 'ABSPATH' ) || exit ;
?>
< div class = " updated woocommerce-message " >
2020-02-05 09:35:26 +00:00
< a class = " woocommerce-message-close notice-dismiss " href = " <?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'redirect_download_method' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?> " >< ? php esc_html_e ( 'Dismiss' , 'woocommerce' ); ?> </a>
2020-01-13 13:27:25 +00:00
< p >
< ? php
echo wp_kses_post (
sprintf (
/* translators: %s: Link to settings page. */
__ ( 'Your store is configured to serve digital products using "Redirect only" method. This method is deprecated, <a href="%s">please switch to a different method instead.</a>' , 'woocommerce' ),
2020-03-11 16:00:35 +00:00
admin_url ( 'admin.php?page=wc-settings&tab=products§ion=downloadable' )
2020-01-13 13:27:25 +00:00
)
);
?>
</ p >
</ div >