gpt4 book ai didi

woocommerce - 更改产品页面上的 'choose an option' 文本

转载 作者:行者123 更新时间:2023-12-01 09:58:28 24 4
gpt4 key购买 nike

在我的 woocommerce 网站的产品页面上。我想将下拉菜单“选择一个选项”中的文本更改为另一种语言。有没有办法做到这一点。

最佳答案

AGMG 的回答不再正确。要更改下拉菜单的默认选项,您现在可以 Hook woocommerce_dropdown_variation_attribute_options_args

例如

add_filter( 'woocommerce_dropdown_variation_attribute_options_args', 'my_wc_filter_dropdown_args', 10 );
function my_wc_filter_dropdown_args( $args ) {
$args['show_option_none'] = 'Select an option';
return $args;
}

我的用例是将其更改为变体组名称(例如“尺寸”或“颜色”)。

function my_wc_filter_dropdown_args( $args ) {
$variation_tax = get_taxonomy( $args['attribute'] );
$args['show_option_none'] = apply_filters( 'the_title', $variation_tax->labels->name );
return $args;
}

关于woocommerce - 更改产品页面上的 'choose an option' 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20756709/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com