如何更改“价格”

时间:2019-07-05 08:57:13

标签: wordpress woocommerce

My Image

在woocommerce中,我想将“价格:”更改为“塞纳:”(从eng变为波兰语)。在哪里可以更改?哪个文件?我在woocommerce模板中没有找到这个。

1 个答案:

答案 0 :(得分:0)

尝试这个,并将其放入您的functions.php

add_filter( 'gettext', 'change_price_woo', 999, 3 );

function change_price_woo( $translated, $text, $domain ) {

$translated = str_ireplace( 'Price:', 'Cena:', $translated );

return $translated;
}