gpt4 book ai didi

php - 更改或翻译 Woocommerce 中的特定文本

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:51:22 24 4
gpt4 key购买 nike

我在网上找到了一个解决方案,但它似乎不起作用。

它说要编辑我几天前所做的以下文件,但不知何故它仍然无法正常工作。

/wp-content/plugins/woocommerce/templates/single-product/related.php

如果我通过 FTP 连接到服务器,文件显示如下:

if ( $products->have_posts() ) : ?>

<div class="related products">

<h2><?php _e('You may also like', 'woocommerce' ); ?></h2>

但是该网页仍然显示“相关产品”而不是“您可能还喜欢”

出于某种原因,这没有发生或在某处过度骑行。

有什么想法吗?

最佳答案

我为子 functions.php 找到了这个:http://speakinginbytes.com/2013/10/gettext-filter-wordpress/

/**
* Change text strings
*
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Related Products' :
$translated_text = __( 'Check out these related products', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );

它在这里运行良好:https://mo-sound.com/en/shop/ball-speaker-classic-white/

关于php - 更改或翻译 Woocommerce 中的特定文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27259838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com