简体   繁体   English

编辑由WooCommerce生成的文本

[英]Editing text generated by WooCommerce

First time to ask a question here.. I searched and searched for the answer but it's a pretty niche question and difficult to google, so here I am. 第一次在这里问一个问题..我搜寻了答案,但这是一个相当小众的问题,很难用谷歌搜索,所以我在这里。

I have a wordpress theme using woocommerce and in the "cart" page there is a section at the bottom left that calculates the cart totals. 我有一个使用woocommerce的wordpress主题,并且在“购物车”页面的左下方有一个计算购物车总额的区域。 Underneath this section is a portion of "fine" print that says "Note: Shipping and taxes are estimated (taxes estimated for the United States (US)) and will be updated during checkout based on your billing and shipping information." 在此部分下面的是“精细”打印的一部分,上面写着“注意:运费和税款均为估算值(美国的税款估算值),并将在结帐时根据您的帐单和运费信息进行更新。”

I'm looking for the correct file to edit this piece of text, basically I want to remove the "(US))" portion. 我正在寻找用于编辑此文本的正确文件,基本上我想删除“(US))”部分。 I have searched through the plugins directory and many of the theme and woocommerce javascript and css files but haven't been able to find where/how this is generated. 我已经搜索了plugins目录以及许多主题和woocommerce javascript和css文件,但无法找到在何处/如何生成。

Any help is appreciated, thanks! 任何帮助表示赞赏,谢谢!

You need to change the location in WooCommerce->Settings->Base Location. 您需要在WooCommerce->设置->基本位置中更改位置。 Alternatively you can use the following command in linux to find a string in a load of documents. 或者,您可以在Linux中使用以下命令在大量文档中查找字符串。

grep -rnw 'directory' -e "pattern"

这应该是路径

/wp-content/plugins/woocommerce/templates/cart/totals.php

Changing the template files might cause you issues if/when you upgrade Woocommerce. 如果/在升级Woocommerce时,更改模板文件可能会导致您出现问题。 I'd recommend putting a filter in your theme's functions.php file. 我建议在主题的functions.php文件中放置一个过滤器。

I think the filter hook might be 'woocommerce_after_cart_totals' but you'll have to test it out to find the correct output. 我认为筛选器挂钩可能是“ woocommerce_after_cart_totals”,但您必须对其进行测试才能找到正确的输出。

Here's a primer on Woo filters & actions: 以下是有关Woo过滤器和操作的入门知识:

http://docs.woothemes.com/document/introduction-to-hooks-actions-and-filters/ http://docs.woothemes.com/document/introduction-to-hooks-actions-and-filters/

And here's a list of all the actions & filters available: 以下是所有可用操作和过滤器的列表:

http://docs.woothemes.com/document/hooks/ http://docs.woothemes.com/document/hooks/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM