これは古い話ですが、少し助けてくれるかもしれません。私も同様の問題がありました。私は、通貨を無効にし、カスタム通貨を追加したいと思っていました。
function get_woocommerce_currency_symbol($currency = '') {
if (! $currency) {
$currency = get_woocommerce_currency();
}
switch ($currency) {
...
return apply_filters('woocommerce_currency_symbol', $currency_symbol, $currency);
これは私が私の子供のテーマのfunctions.phpに置かれているコードです:関数は、他の関数である
function get_woocommerce_currencies() {
return array_unique(
apply_filters('woocommerce_currencies',
array(
woocommerce /含ん/ WC-コアのfunctions.phpにあり:
add_filter('woocommerce_currencies', 'add_my_currency');
function add_my_currency($currencies) {
$currencies['RSD'] = __('Serbian dinar', 'woocommerce');
return $currencies;
}
テンプレートをどのような目的に上書きしますか? – helgatheviking