Bug in wc-attribute-functions.php ?
-
I recognized, that the labels in the product attributes are wrong displayed:
wc_attribute_label( $name ) returns the attribute name, but not the label.in wc-attribute-functions.php in about line 65
return apply_filters( 'woocommerce_attribute_label', $name, $label );
$name and $label have to be turned around to $label and $name:
return apply_filters( 'woocommerce_attribute_label', $label, $name );
Now the Label is displayed, not the name.
- The topic ‘Bug in wc-attribute-functions.php ?’ is closed to new replies.