I want to write something here.Hope you have understood my problem
//******my custom code**//
add_filter( ‘woocommerce_attribute_label’, ‘custom_attribute_label’, 10, 3 );
function custom_attribute_label( $label, $name, $product ) {
$taxonomy = ‘pa_’.$name;
if( $taxonomy == ‘pa_euro-size’ OR ‘pa_top-size’ )
$label .= ‘<div class=”custom-label”>’ . __(‘SIZE CHART <i class=”fa fa-chevron-right”></i>‘, ‘woocommerce’) . ‘</div>’;
return $label;
}