首页 > 解决方案 > 更改“您必须登录才能结帐”的文本。

问题描述

嗨,有人请告诉我如何更改 woocommerce 默认短信“您必须登录才能结帐。” 在结帐页面带有我自己的短信“您必须登录或注册才能参加比赛”

提前致谢...

我在这里等待一个漂亮的答复/.......

标签: woocommerce

解决方案


你可以试试下面的代码。

function custom_woocommerce_checkout_must_be_logged_in_message( $var ) { 
        return 'You have to login or register to join contests'; 
}
add_filter( 'woocommerce_checkout_must_be_logged_in_message', 'custom_woocommerce_checkout_must_be_logged_in_message', 10, 1 );

代码在您当前子主题的functions.php 中。


推荐阅读