添加产品价值以添加到购物车按钮

时间:2020-05-06 07:17:10

标签: php wordpress woocommerce product hook-woocommerce

我要在单个产品页面的“添加到购物车”按钮中显示产品价值(版本)

我找到了必须编辑的文件:woocommerce \ templates \ single-product \ add-to-cart \ external.php

<button type="submit" class="single_add_to_cart_button button alt"><?php echo esc_html( $button_text ); ?> </button>

我尝试将其更改为:

<button type="submit" class="single_add_to_cart_button button alt"><?php echo wp_kses_post( $product_attribute['value'] ); ?> </button>

但是现在“添加到购物车”按钮上没有任何显示

1 个答案:

答案 0 :(得分:0)

只需尝试将其添加到活动主题的functions.php文件中

add_action( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_product_single_add_to_cart_text', 10, 2 );

function woocommerce_product_single_add_to_cart_text( $add_to_cart, $product ) {
    return $add_to_cart."--".$product->get_price();
}