Bạn thêm đoạn mã sau vào functions.php
.
/**
* Vô hiệu hóa WooCommerce Coming Soon Mode
*/
add_filter( 'woocommerce_admin_features', function( $features ) {
$features = array_filter( $features, function( $value ) {
return $value !== 'launch-your-store';
});
return $features;
}, 10 );
Chúc các bạn thành công!
Bình Luận