Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * WooCommerce:
- * Desactivar la página de inicio, los pasos de configuración inicial y los avisos de marketing de WooCommerce/Woo.com
- */
- add_filter( 'woocommerce_admin_features', function( $features ) {
- $features_to_be_disabled = array(
- 'homescreen',
- 'onboarding',
- 'onboarding-tasks',
- 'marketing',
- 'woo-mobile-welcome',
- 'wc-pay-promotion',
- 'wc-pay-welcome-page',
- );
- foreach( $features as $key => $feature ) {
- if ( in_array( $feature, $features_to_be_disabled ) ) {
- unset( $features[$key] );
- }
- }
- return $features;
- } );
Add Comment
Please, Sign In to add comment