Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/8d46400de7ebcd43be6b6ad503da9db5 to your computer and use it in GitHub Desktop.
Save plugin-republic/8d46400de7ebcd43be6b6ad503da9db5 to your computer and use it in GitHub Desktop.
Display variant name without SKU in child product
<?php
/**
* Display variant name without SKU in child product
*/
function prefix_variation_name_variable_child_select( $name, $variant ) {
return $variant->get_name();
}
add_filter( 'pewc_variation_name_variable_child_select', 'prefix_variation_name_variable_child_select', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment