您好,我需要根据产品变量更改“添加到购物车”按钮的文本。例如,我创建了两个变量“预订”和“直接购买”。我希望当人们选择预订时,按钮的文本将从“添加到购物车”更改为“书”。这可能吗?谢谢
答案 0 :(得分:0)
您可以通过更改类别来更改购物车文本。如果要更改购物车文字副产品,则可以添加产品ID。
add_filter( 'woocommerce_product_add_to_cart_text', 'bbloomer_archive_custom_cart_button_text' );
function bbloomer_archive_custom_cart_button_text() {
global $product;
$terms = get_the_terms( $product->ID, 'product_cat' );
foreach ($terms as $term) {
$product_cat = $term->name;
break;}
switch($product_cat){
case 'category1';
return 'Category 1 button text'; break;
case 'category2';
return 'Category 2 button text'; break;
default;
return 'Default button text when no match found'; break;
}
}