0

如何在新的 Elementor 菜单购物车小部件中更改“结帐”和“显示购物车”按钮中的“小计”和文本?我想将它们翻译成我的语言(波兰语),但这些文本在我使用的 Loco 翻译小部件中不可见。可能 str_ireplace () 会起作用,但我不能正确使用它。链接到我的网站 - https://www.abreo.pl

4

1 回答 1

3

问题解决了...

/*Change text strings */
function my_text_strings( $translated_text, $text, $domain ) {
    switch ( $translated_text ) {
        case 'Subtotal' :
            $translated_text = __( 'Your text here', 'woocommerce' );
            break;
            case 'Checkout' :
            $translated_text = __( 'Your text here', 'woocommerce' );
            break;
            case 'Show Cart' :
            $translated_text = __( 'Your text here', 'woocommerce' );
            break;
    }
    return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
于 2018-08-31T06:43:31.383 回答