在 Woocommerce 结帐页面中添加信息自定义消息

Add an informative custom message in Woocommerce Checkout page

我有一个基于 WP/Woocommerce 的网站,我想通知我的客户,每当他们在我的商店购买商品时,他们订单的 3% 将下放给慈善协会。

我想显示根据总数计算的确切金额,例如: 总计:150 欧元

5 欧元将下放等

我该如何管理它?

您可以在结帐页面将其显示为 Woocommerce "success" 通知,这样:

add_action( 'woocommerce_before_checkout_form', 'print_donation_notice', 10 );
function print_donation_notice() {
    wc_print_notice( sprintf(
        __("%s 3%% of this order will be devolved for charity associations, so an amount of %s.", "woocommerce"),
        '<strong>' . __("Information:", "woocommerce") . '</strong>',
        strip_tags( wc_price( WC()->cart->get_subtotal() * 0.03 ) )
    ), 'success' );
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。