WC_Admin_Notices::add_redirect_download_method_notice
Add notice about Redirect-only download method, nudging user to switch to a different method instead.
Method of the class: WC_Admin_Notices{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = WC_Admin_Notices::add_redirect_download_method_notice();
WC_Admin_Notices::add_redirect_download_method_notice() WC Admin Notices::add redirect download method notice code WC 10.5.0
public static function add_redirect_download_method_notice() {
if ( 'redirect' === get_option( 'woocommerce_file_download_method' ) ) {
self::add_notice( 'redirect_download_method' );
} else {
self::remove_notice( 'redirect_download_method' );
}
}