在Elementor菜单购物车小部件中更改文本

时间:2018-08-30 11:21:31

标签: php wordpress function woocommerce elementor

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

1 个答案:

答案 0 :(得分:2)

问题解决了...

/*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 );