gpt4 book ai didi

php - 在 Woocommerce 结帐页面中的所有默认通知之前显示自定义通知

转载 作者:行者123 更新时间:2023-12-01 12:11:57 27 4
gpt4 key购买 nike

我使用以下代码在结帐页面中向未登录的 woocommerce 用户(访问者)显示自定义消息

add_action('woocommerce_before_checkout_form', 'my_custom_message');
function my_custom_message() {
if ( ! is_user_logged_in() ) {
wc_print_notice( __('This is my custom message'), 'notice' );
}
}

此论坛的顶部代码来自 @loictheaztec 先生我之前的问题链接如下:
Display a custom message for guest users in Woocommerce checkout page

我想更改代码中的 woocommerce_before_checkout_form 以将我的消息移到结帐页面的顶部(第一个)。但我不知道该怎么做。我只知道下面的那两个钩子(Hook)(与结帐页面有关):

  • woocommerce_before_checkout_form
  • woocommerce_after_checkout_form

i added picture of my problem

最佳答案

要在 Woocommerce 登录消息之前和添加优惠券消息之前在结帐页面中显示您的自定义消息,您将使用以下代码:

add_action('template_redirect', 'my_custom_message');
function my_custom_message() {
if ( ! is_user_logged_in() && is_checkout() && ! is_wc_endpoint_url() ) {
wc_add_notice( sprintf( __('This is my <strong>"custom message"</strong> and I can even add a button to the right… <a href="%s" class="button alt">My account</a>'), get_permalink( get_option('woocommerce_myaccount_page_id') ) ), 'notice' );
}
}

代码进入您的事件子主题(或事件主题)的 function.php 文件中。经过测试并且可以工作。

enter image description here


一个更简单的版本所有用户仅在结帐页面:

add_action('template_redirect', 'my_custom_message');
function my_custom_message() {
if ( is_checkout() && ! is_wc_endpoint_url() ) {
wc_add_notice( __('This is my custom message'), 'notice' );
}
}

代码进入您的事件子主题(或事件主题)的 function.php 文件中。经过测试并且可以工作。

enter image description here

关于php - 在 Woocommerce 结帐页面中的所有默认通知之前显示自定义通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51138649/

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