[ad_1]
Hi @caredesign,
This is the default behavior on WooCommerce. However, with this code snippet, the variation attributes will be removed from the product title:
/**
* WooCommerce:
* Remove the variation attributes from the product title
**
add_filter( 'woocommerce_product_variation_title_include_attributes', '__return_false' );
add_filter( 'woocommerce_is_attribute_in_product_name', '__return_false' );If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters
