我正在制作Wordpress / WooCommerce网站,我使用“店面”作为主题,但现在我有问题,因为我不是用英文制作网站,所以现在我想更改按钮文字,例如“View Basket”,“Checkout”和“Add to Basket”。
但我不知道在哪里可以更改代码。或者我需要做些什么来改变它?
答案 0 :(得分:1)
您可以使用您选择的语言安装Storefront。您可能需要遵循本指南https://docs.woothemes.com/document/installing-storefront-in-your-language/
在那里,您还可以找到创建自定义 WooCommerce本地化的链接
您需要决定什么符合您的需求。
自定义翻译基本上可以通过将翻译文件放入
来完成wp-content/languages/themes/
对于店面名称文件
storefront-it_IT.mo
您可以找到有关引用链接的更多信息
答案 1 :(得分:1)
打开主题的functions.php文件并粘贴以下代码。
add_filter( 'add_to_cart_text', 'woo_custom_product_add_to_cart_text' ); // < 2.1
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_product_add_to_cart_text' ); // 2.1 +
function woo_custom_product_add_to_cart_text() {
return __( 'My Button Text', 'woocommerce' );
}
答案 2 :(得分:0)
好的,这里有正确答案,最简单的解决方案:您应该下载适合您语言的翻译文件,可能是您所在国家/地区的Wordpress社区已经完成了。所以压缩文件应该解压缩并插入
wp-content / languages / themes和wp-content / languages / plugins。你应该有2个文件扩展名为.po和.mo。之后,只需进入仪表板 - > gt设置 - >网站语言:“您的语言”。
这应该是它。
https://docs.woothemes.com/document/installing-storefront-in-your-language/