Trovin
1/23/2019 - 1:30 PM

Remove attr name from product name (CART PAGE)

IN FUNCTIONS.PHP
----------------

add_filter( 'woocommerce_product_variation_title_include_attributes', 'custom_product_variation_title', 10, 2 );
function custom_product_variation_title($should_include_attributes, $product){
    $should_include_attributes = false;
    return $should_include_attributes;
}

styles
------

.woocommerce-cart-form {
  .variation {
    display: none;
  }
}