Skip to content

Instantly share code, notes, and snippets.

@wooexperte
Last active June 29, 2017 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wooexperte/e956e46ac9e3ed3e6c1648206a10c22a to your computer and use it in GitHub Desktop.
Save wooexperte/e956e46ac9e3ed3e6c1648206a10c22a to your computer and use it in GitHub Desktop.
WooCommerce Produkt-Tabs entfernen
/**
* WooCommerce - Produkt-Tabs deaktivieren
* https://wooexperte.de/snippet/woocommerce-produkt-tabs-reihenfolge-aendern/
*/
function woo_remove_product_tab($tabs) {
unset( $tabs['description'] ); // Entfernt Tab "Beschreibung"
unset( $tabs['reviews'] ); // Entfernt Tab "Bewertung"
unset( $tabs['additional_information'] ); // Entfernt Tab "Zusätzliche Informationen"
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tab', 98);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment