Skip to content

Instantly share code, notes, and snippets.

@kloon
Created September 4, 2013 10:36
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save kloon/6435352 to your computer and use it in GitHub Desktop.
Save kloon/6435352 to your computer and use it in GitHub Desktop.
WooCommerce Change Description Tab title and heading to product title
<?php
// Change the description tab title to product name
add_filter( 'woocommerce_product_tabs', 'wc_change_product_description_tab_title', 10, 1 );
function wc_change_product_description_tab_title( $tabs ) {
global $post;
if ( isset( $tabs['description']['title'] ) )
$tabs['description']['title'] = $post->post_title;
return $tabs;
}
// Change the description tab heading to product name
add_filter( 'woocommerce_product_description_heading', 'wc_change_product_description_tab_heading', 10, 1 );
function wc_change_product_description_tab_heading( $title ) {
global $post;
return $post->post_title;
}
?>
@newmediologo
Copy link

Thanks kloon, really useful..:-)

@jarodthornton
Copy link

Perfect! Thank you!

@laibamalik
Copy link

hey. i wanted to add a word "WHY" just before product title in the product description tab title. how can i do that i'm trying different methods but nothing is working for me.
any help is appreciated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment