在 Woocommerce 变量产品的所有属性标签末尾添加一个红色星号

Add a red asterisk at the end of all attributes labels in Woocommerce variable products

如何在 Woocommerce 中的所有属性标签的末尾添加一个红色星号?看起来应该很简单,但我很难弄清楚。它不会在 functions.php 文件中吗?

所需的属性实际上有效,因为“添加到购物车”按钮在选择一个选项之前呈灰色。然而,显然我的客户没有意识到这一点,因为他们告诉我我的“添加到购物车”按钮不起作用。因此,如果我可以将他们的注意力吸引到变体下拉菜单上,他们可能会意识到必须先选择一个选项才能将商品添加到购物车。

要在单变量产品的产品属性标签末尾添加一个红色星号,就像在必填的结帐字段中一样,您可以使用以下非常简单的钩子函数:

add_filter( 'woocommerce_attribute_label', 'filter_single_variable_product_attribute_label', 10, 3 );
function filter_single_variable_product_attribute_label( $label, $name, $product ) {
    if ( is_product() ){
        $label .= '&nbsp;<abbr class="required" title="required" style="color:#FF3333;">*</abbr>';
    }
    return $label;
}

代码进入活动子主题(或活动主题)的 functions.php 文件。已测试并有效。