在商店页面上更改woocommerece复合产品的按钮文本

时间:2019-11-19 16:16:44

标签: woocommerce

在商店页面上更改woocommerece复合产品的按钮文本

add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) {
    global $product;
    if ( $product->is_type( 'variable' ) ) {
        $text = $product->is_purchasable() ? __( 'Custom options text', 'woocommerce' ) : __( 'Read more', 'woocommerce' );
    }
    return $text;
}, 10 );

以上代码不适用于复合产品

0 个答案:

没有答案
相关问题