Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Created August 18, 2015 12:53
Show Gist options
  • Save SirDarcanos/bbb008910cd870aeaa7d to your computer and use it in GitHub Desktop.
Save SirDarcanos/bbb008910cd870aeaa7d to your computer and use it in GitHub Desktop.
function customize_grouped_product_title( $tilte, $product ) {
if ( $product->get_parent() > 0 ) {
$title = get_the_title( $product->id );
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment