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-12 10:59:02 +00:00
add_query_arg (
array (
'page' => 'wc-settings' ,
'tab' => 'products' ,
'section' => 'downloadable' ,
),
admin_url ( 'admin.php' )
)
2020-01-13 13:27:25 +00:00
)
);
?>
</ p >
</ div >