Viewing 1 replies (of 1 total)
  • Plugin Support Hitendra Chopda

    (@hitendra-chopda)

    Hello aziz97,

    Thanks for contacting us.

    You can add the below code in your themes functions.php file and change the variation title as per your format.

    function wqcmv_variation_title_custom( $variation_title, $variation_id ) {
    	$variation = new WC_Product_Variation($variation_id);
    	$variation_title = implode(" / ", $variation->get_variation_attributes());
    	return $variation_title;
    }
    add_filter( 'wqcmv_variation_title', 'wqcmv_variation_title_custom', 10, 2 );

    Hope this is helps.

    Thanks,
    Hitendra & Dotstore Team

Viewing 1 replies (of 1 total)
  • The topic ‘Remove ID from title’ is closed to new replies.