Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nickburne/11372104 to your computer and use it in GitHub Desktop.
Save nickburne/11372104 to your computer and use it in GitHub Desktop.
Personalise a product tab to say exactly what you want
add_filter( 'woocommerce_product_tabs', 'woo_custom_description_tab', 98 );
function woo_custom_description_tab( $tabs ) {
$tabs['description']['callback'] = 'woo_custom_description_tab_content'; // Custom description callback
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment