我已经安装了WPML,用于在我的Woocommerce产品页面上添加货币选择器,一切都很好!
但我的问题是:我可以用两种不同的货币显示我的价格吗?例如,当选择$ CAD时,价格将显示为0,00 $(0,00€),但如果选择器中的货币为€,则价格将显示为0,00€(0,00) $)
有什么想法吗?
谢谢!
答案 0 :(得分:0)
您可以使用过滤器woocommerce_get_price_html
,
add_filter('woocommerce_get_price_html', 'my_price_html, 99, 2);
function my_price_html( $price, $product ){
return 'Was:' . str_replace( '<ins>', ' Now:<ins>', $price );
}.