在Woocommerce中选择商品价格变化后添加自定义动态文本

时间:2019-01-22 08:45:06

标签: php wordpress woocommerce hook-woocommerce price

我是woocommerce的新手,我尝试了一周的时间,以低于浮动价格的价格显示4倍的付款建议。

我尝试了几种在网络上发现的技术和代码,但是都没有取得好的结果。

我能做的最好的事情,

//Afficher paiement 3xcb//


add_filter('woocommerce_get_price_suffix', 'display_3xcb', 99, 4);

function display_3xcb($html, $price, $product) {
	global $post, $product;
	$variation_id = '7575';
	$cb_price = get_post_meta($variation_id, '_sale_price', true);
	$cb_price = ($cb_price/4);
	$html = '<p> Ou simplement en 4 x ' . $cb_price . '€ sans frais</p>'; 
	return $html;
}

但是我的问题是我的$variation_id不是动态的。

您是否知道如何检索Selected变量的ID?

2 个答案:

答案 0 :(得分:0)

function the_product_price() {
    global $product;
    global $woocommerce;
    $regular_price = get_post_meta(get_the_ID(), '_regular_price', true);
    if ($regular_price == "") {
        $available_variations = $product->get_available_variations();
        if ($available_variations) {
            $variation_id = $available_variations[0]['variation_id'];  
            $variable_product1 = new WC_Product_Variation($variation_id);
            $regular_price = $variable_product1->regular_price;
        }
    }
    echo '<span class="price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">'.get_woocommerce_currency_symbol().' </span>'.$regular_price.'</span></span>';

}

以上功能获取特定产品顺序价格的常规价格。

答案 1 :(得分:0)

对于所选价格的产品变化附加后缀,请改用:

add_filter( 'woocommerce_available_variation', 'custom_variation_price_addition', 10, 3 );
function custom_variation_price_addition( $data, $product, $variation ) {
    $price  = wc_get_price_to_display( $variation );
    $suffix = sprintf( __("Ou simplement en 4 x %s sans frais"), wc_price($price / 4) );

    $data['price_html'] .= '<span class="4xcb"> ' . $suffix . '</span>';

    return $data;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

enter image description here