add cache clearing unsupported message
This commit is contained in:
parent
865028556a
commit
84b96bfa3e
|
@ -578,8 +578,12 @@ class WC_REST_System_Status_Tools_V2_Controller extends WC_REST_Controller {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'clear_template_cache':
|
case 'clear_template_cache':
|
||||||
|
if ( function_exists( 'wc_clear_template_cache' ) ) {
|
||||||
wc_clear_template_cache();
|
wc_clear_template_cache();
|
||||||
$message = __( 'Template cache cleared.', 'woocommerce-rest-api' );
|
$message = __( 'Template cache cleared.', 'woocommerce-rest-api' );
|
||||||
|
} else {
|
||||||
|
$message = __( 'The active version of WooCommerce does not support template cache clearing.', 'woocommerce-rest-api' );
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue