更改文字woocommerce迷你按钮

时间:2017-07-31 02:39:53

标签: php function woocommerce

在我们的eragingopia.de的临时站点上,我试图更改下拉迷你卡的按钮文字,就像你在图片中看到的那样。为了减少混淆:在ergotopia.de上它是正确的文本,但是由于更新(我们在Staging上测试)它正在更改按钮文本,我无法更改文本。

enter image description here

我尝试了以下方法但没有成功:

  1. 通过loco-translate翻译
  2. 使用以下代码
  3. functions.php:

    add_filter('gettext', 'translate_text'); add_filter('ngettext', 'translate_text');

    function translate_text($translated) { $translated = str_ireplace('Kasse', 'Weiter zur Kasse', $translated); return $translated; }

  4. 在儿童主题(childtheme \ woocommerce \ includes \ wc-template-functions.php)中,我在第1487行编辑了文件:

    function woocommerce_widget_shopping_cart_proceed_to_checkout() { echo '<a href="' . esc_url( wc_get_checkout_url() ) . '" class="button checkout wc-forward">' . esc_html__( 'Weiter zur Kasse', 'woocommerce' ) . '</a>'; }

  5. 您知道如何更改吗?

1 个答案:

答案 0 :(得分:0)

解决方案:我必须添加优先级,如

{{1}}