Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Created January 18, 2023 16:13
Show Gist options
  • Save jjmontalban/ce7c01aa90f86248cb9cb25aa5976ce8 to your computer and use it in GitHub Desktop.
Save jjmontalban/ce7c01aa90f86248cb9cb25aa5976ce8 to your computer and use it in GitHub Desktop.
Elimina metaboxes de Woocommerce
/**
* @author https://stackoverflow.com/questions/21672870/woocommerce-remove-meta-boxes
* @author https://wp-kama.com/plugin/woocommerce/hook/woocommerce_product_data_tabs
*/
//Eliminar metaboxes
function remove_metaboxes() {
//remove_meta_box( 'postexcerpt' , 'product' , 'normal' ); Descripcion corta
remove_meta_box( 'tagsdiv-product_tag' , 'product' , 'side' ); //tags
//remove_meta_box( 'yoast_internal_linking' , 'product' , 'side' ); //tags
}
add_action( 'add_meta_boxes' , 'remove_metaboxes', 50 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment