Home WooCommerce Tutorials Standard Post

Standard Post

Tutorial on Modifying WooCommerce Related Product Text

When using WordPress for foreign trade website building, most sites use WooCommerce to set up an e-commerce system. Then you will encounter issues related to products. By default, they display as „You may also like“ and „Related products“. One is related/recommended products, and the other is related products. To modify „Y...

Published on November 25, 2020 About 2 minutes read
修改WooCommerce相关产品文字教程

Building a Foreign Trade Website with WordPressMost websites willuse WooCommerce to build an e-commerce system, then you will encounter issues related to products. By default, they are displayed as „You may also like“ and „Related products“—one is for associated/recommended products, and the other is for related products.

woocommerce相关产品

There are two methods to modify the text display of „You may also like“ and „Related products“: one is to modify the theme template files, and the other is to override them via function code.

Method of modifying the theme template

These two terms can be found and modified in the source code within WooCommerce's templates, specifically in the following files.

single-product/related.php
single-product/up-sells.php
cart/cross-sells.php

Method of overriding via function file

If modifying the theme template is troublesome, you can also achieve the modification by overriding with function code.

add_filter( 'gettext', 'misha_custom_related_products_text', 20, 3 );
function misha_custom_related_products_text( $translated_text, $text, $domain ) {

if( $translated_text == 'Related products' // for Related products
|| $translated_text == 'You may also like…' || // for Upsells
|| $translated_text == 'You may be interested in…' ) { // for Cross-sells
$translated_text = 'Do not miss these products too'; // new title
}

return $translated_text;

}

 

5/5 - (1 vote)
Previous NameSilo Domain Resolution, Changing DNS Servers, and 301 Redirect Tutorial Continue reading content around the same timeline. Next Black Friday Recommendations for WordPress Themes, Plugins, and Hosting View the next related tutorial or experience.

AI Website Building Assistant

🤖
Hello! I am the Naibabiji AI Assistant. How can I help you?
Quick Consultation: