Home / Admin / product data tabs
Duplicate Snippet

Embed Snippet on Your Site

product data tabs

Carla Mawyin
<10
Code Preview
php
<?php
/**
 * Rename product data tabs
 */
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
	$tabs['additional_information']['title'] = __( 'Product Info' );	
// Rename the additional information tab
	return $tabs;
}

Comments

Add a Comment