Skip to content

Instantly share code, notes, and snippets.

@s4nji
s4nji / functions.php
Last active December 14, 2015 23:49 — forked from mikejolley/functions.php
Rehooking should be done using add_action().
<?php
add_action( 'wp' , 'wc_order_tabs' );
function wc_order_tabs() {
// Remove tabs
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_description_tab', 10 );
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_attributes_tab', 20 );
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_reviews_tab', 30 );