Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Remove default product data tabs

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
	unset( $tabs['description'] );          // Remove the description tab
    unset( $tabs['reviews'] );             // Remove the reviews tab
//  unset( $tabs['additional_information'] );     // Remove the additional information tab
    return $tabs;
}
Comment

PREVIOUS NEXT
Code Example
Php :: failed to delete data in mysqli using php 
Php :: how can we manage category and product in laravek 
Php :: AAPL_041621C125@3.25SL2.00 
Php :: RequestCriteria laravel 
Php :: odoctrine querybuilder print sql 
Php :: Laravel Read multiple file extensions 
Php :: php phalcon 
Php :: morph laravel without classes name 
Php :: Symfony 5 - Customize Twig error templates 
Php :: use varable on all site pages laravel 
Php :: how to use cornjob on live server in laravel 
Php :: es php query where value is not empty 
Php :: add tag tpo protfolio? 
Php :: leaf php 
Php :: print array blade laravel 
Php :: Trying to get property 
Php :: base64_decode 
Php :: heroku mysql 
Php :: ? in php 
Php :: php send values in $_SESSION to other page 
Php :: WP Migrate Lite 
Php :: function with parament php 
Php :: User::factory()-create( 
Php :: convert string to int php 7 
Java :: Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` 
Java :: jbutton set background transparent 
Java :: how to create new frame with java swing 
Java :: convert string to float java 
Java :: java get current milliseconds 
Java :: how to set checkbox size in android 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =