YordanSoares

WooCommerce: Desactiva la página de inicio, los pasos iniciales y los avisos de marketing

Feb 4th, 2024
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | Software | 0 0
  1. <?php
  2. /**
  3.  * WooCommerce:
  4.  * Desactivar la página de inicio, los pasos de configuración inicial y los avisos de marketing de WooCommerce/Woo.com
  5.  */
  6. add_filter( 'woocommerce_admin_features', function( $features ) {
  7.     $features_to_be_disabled = array(
  8.         'homescreen',
  9.         'onboarding',
  10.         'onboarding-tasks',
  11.         'marketing',
  12.         'woo-mobile-welcome',
  13.         'wc-pay-promotion',
  14.         'wc-pay-welcome-page',
  15.     );
  16.      foreach( $features as $key => $feature ) {
  17.         if ( in_array( $feature, $features_to_be_disabled ) ) {
  18.             unset( $features[$key] );
  19.         }
  20.      }
  21.     return $features;
  22. } );
Tags: woocommerce
Add Comment
Please, Sign In to add comment