隐藏 Woocommerce 可变订阅产品价格范围

Hide Woocommerce variable subscription product price range

我想隐藏订阅产品变体详细信息"From: .50 / month for 12 months and a .00 sign up fee"我需要禁用代码。

我试过其他隐藏单词 "from" 或更改 "sign up fee" 措辞的片段。

/*
 * Disable Variable Product Price Range completely:
**/

add_filter( 'woocommerce_variable_sale_price_html', 'my_remove_variation_price', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'my_remove_variation_price', 10, 2 );

function my_remove_variation_price( $price ) {
    $price = '';
    return $price;
}

该代码仅适用于默认的 WooCommerce 产品,不适用于订阅产品。

我希望 "From: .50 / month for 12 months and a .00 sign up fee" 被隐藏。

以下将隐藏可变订阅产品的价格范围:

add_filter( 'woocommerce_get_price_html', 'hide_price_html_for_variable_subscription', 10, 2 );
function hide_price_html_for_variable_subscription( $price, $product ){
    if ( $product->is_type('variable-subscription') ) {
        $price = '';
    }
    return $price;
}

代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。