Skip to content

Instantly share code, notes, and snippets.

View rodriguezavellan's full-sized avatar

rodriguezavellan

View GitHub Profile
@rodriguezavellan
rodriguezavellan / gist:b74537530ecd54151f01daaae610f48f
Created May 6, 2020 20:16
Show Dokan vendor Biography in single product tab
/**
* Add a custom product data tab
*/
add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {
// Adds the new tab
$tabs['test_tab'] = array(
'title' => __( 'Vendor Bio', 'woocommerce' ),