转换woocommerce的价格

时间:2015-10-01 11:07:40

标签: wordpress woocommerce

我的产品价格以美元为基础,但我想在商店和结账时使用转换率(1美元= 3500 IRR)将USD兑换为IRR。我找到了这个代码,但它只适用于产品视频,当我点击购物车或结账时价格变为美元。

add_filter( 'woocommerce_get_price_html', 'wpa83367_price_html', 100, 2 );
function wpa83367_price_html( $price, $product ){
    $price = get_post_meta( get_the_ID(), '_regular_price', true);
    $toman = 3500;
    $total = $price * $toman . ' ' . 'تومان';
    return $total;
}

0 个答案:

没有答案