Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save madeincosmos/eab163f60d3ea84ea8660aa6a014c14d to your computer and use it in GitHub Desktop.
Save madeincosmos/eab163f60d3ea84ea8660aa6a014c14d to your computer and use it in GitHub Desktop.
Removes all WooCommerce product attributes from product name
function custom_woocommerce_is_attribute_in_product_name( ) {
return false;
}
add_filter( 'woocommerce_is_attribute_in_product_name', 'custom_woocommerce_is_attribute_in_product_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment