答案 0 :(得分:1)
您可以轻松完成过滤。请试试这个。
add_filter( 'woocommerce_product_add_to_cart_text', 'my_custom_cart_button_text', 10 );
function my_custom_cart_button_text() {
global $product;
if (@$product->product_type == 'simple') {
return __(get_woocommerce_currency_symbol().@$product->price, 'woocommerce');
} else {
// If needed the default behavior for all other products:
// return __('My default text', 'woocommerce');
}
}