WooCommerce在结帐页面上编辑错误消息

Nil*_*ara 5 wordpress woocommerce

我看到WooCommerce给出了一条错误消息(您必须接受我们的条款和条件.),如果有人未选中"条款"复选框(在结帐页面中).

我如何更改/编辑错误消息?

And*_*ndy 11

您可以使用woocommerce_add_error过滤器执行此操作.将以下内容添加到functions.php文件中.

// alter the subscriptions error
function my_woocommerce_add_error( $error ) {
    if( 'The generic error message' == $error ) {
        $error = 'The shiny brand new error message';
    }
    return $error;
}
add_filter( 'woocommerce_add_error', 'my_woocommerce_add_error' );
Run Code Online (Sandbox Code Playgroud)