WooCommerce按类别更改货币

时间:2016-01-05 作者:Spyder Tech

我试图在我的Woocommerce商店中的特定类别上显示不同的货币。具体而言,此类物品中包含了只能通过myCred points购买的物品。商店的其余部分都有可以正常购买的商品。

我知道我可以使用is_product_category 函数在我的函数中。php的目标是一个特定的类别,但我如何告诉Woocommerce在一个类别中使用特定的货币?

1 个回复
SO网友:Leon Francis Shelhamer

钩住woocommerce_currency 滤器

function change_woocommerce_currency( $currency ) {
    if ( is_product_category( \'my-special-cat\' ) ) {
        $currency = \'myCred\' // or whatever the currency symbol is
    }
    return $currency;
}
add_filter( \'woocommerce_currency\', \'change_woocommerce_currency\' );