After a successful payment, What hook is triggered in Woocommerce(支付成功后,Woocommerce中触发What hook)
问题描述
在 Woocommerce 中,要向客户发送短信付款信息,我需要在成功付款后激活触发器.
但是我没有找到任何钩子来做
这是我的插件代码:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {add_action( '####Action 在这里使用#######', array( &$this, 'successful_payment_notification_client' ) );}/* WooCommerce 支付成功通知客户端** @param $order_id*/公共函数 success_payment_notification_client ( $order_id ) {//检查移动字段是否为空如果(空($_REQUEST['mobile'])){返回;}$order = new WC_Order( $order_id );$this->sms->to = array( $_REQUEST['mobile'] );$template_vars = 数组('%order_id%' =>$order_id,'%order_number%' =>$order->get_order_number(),'%status%' =>$order->get_status(),'%billing_first_name%' =>$_REQUEST['billing_first_name'],'%billing_last_name%' =>$_REQUEST['billing_last_name'],'%transaction_id%' =>get_post_meta( $order_id,'_payment_method_title', true ),);$message = str_replace( array_keys( $template_vars ), array_values( $template_vars ), $this->options['wc_notify_customer_payment_successful_message'] );$this->sms->msg = $message;$this->sms->SendSMS();}
所需的钩子应该出现在我的代码的第二行.
任何帮助将不胜感激.
你应该尝试使用 woocommerce_payment_complete
动作钩子,它是专门为此制作的,位于 woocommerce_payment_complete
a href="https://docs.woocommerce.com/wc-apidocs/source-class-WC_Order.html#122" rel="nofollow noreferrer">WC_Order
payment_completed()
方法.它在成功付款后立即触发.所以试试:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {add_action( 'woocommerce_payment_complete', array( &$this, 'successful_payment_notification_client' ) );}
<块引用>
您还应该尝试将 array( &$this,
替换为 array( $this,
.
或者使用woocommerce_payment_complete_order_status_processing
钩子:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {add_action('woocommerce_payment_complete_order_status_processing', array( &$this, 'successful_payment_notification_client' ) );}
<块引用>
您还应该尝试将 array( &$this,
替换为 array( $this,
.
或使用 woocommerce_order_status_processing
钩子 (但有 2 个参数:$order_id
和 $order
):>
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {add_action( 'woocommerce_order_status_processing', array( &$this, 'successful_payment_notification_client' ) );}
<块引用>
您还应该尝试将 array( &$this,
替换为 array( $this,
.
代码进入你的插件文件......
<块引用>
如果没有构造函数(比如一个类)或没有实例化对象,你应该这样使用 add()
动作函数:
add_action( 'the_hook', 'the_hooked_function', $priority, $nb_of_args );
In Woocommerce, to send sms payment information to the customer, I need to activate a trigger after a successful payment.
But I didn't find any hook do it
This is my plugin code:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( '####Action to be used here#######', array( &$this, 'successful_payment_notification_client' ) );
}
/* WooCommerce Successful payment notification client
*
* @param $order_id
*/
public function successful_payment_notification_client ( $order_id ) {
// Check the mobile field is empty
if ( empty( $_REQUEST['mobile'] ) ) {
return;
}
$order = new WC_Order( $order_id );
$this->sms->to = array( $_REQUEST['mobile'] );
$template_vars = array(
'%order_id%' => $order_id,
'%order_number%' => $order->get_order_number(),
'%status%' => $order->get_status(),
'%billing_first_name%' => $_REQUEST['billing_first_name'],
'%billing_last_name%' => $_REQUEST['billing_last_name'],
'%transaction_id%' => get_post_meta( $order_id,'_payment_method_title', true ),
);
$message = str_replace( array_keys( $template_vars ), array_values( $template_vars ), $this->options['wc_notify_customer_payment_successful_message'] );
$this->sms->msg = $message;
$this->sms->SendSMS();
}
The desired hook should come in line two of my code.
Any help will be appreciated.
You should try to use woocommerce_payment_complete
action hook that is just made specifically for that and located in WC_Order
payment_completed()
method. It's triggered jus after a successful payment. So try:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( 'woocommerce_payment_complete', array( &$this, 'successful_payment_notification_client' ) );
}
You should try also to replace
array( &$this,
byarray( $this,
instead.
Or using woocommerce_payment_complete_order_status_processing
hook:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( 'woocommerce_payment_complete_order_status_processing', array( &$this, 'successful_payment_notification_client' ) );
}
You should try also to replace
array( &$this,
byarray( $this,
instead.
or using woocommerce_order_status_processing
hook (but with 2 arguments: $order_id
and $order
):
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( 'woocommerce_order_status_processing', array( &$this, 'successful_payment_notification_client' ) );
}
You should try also to replace
array( &$this,
byarray( $this,
instead.
Code goes in your plugin file…
If there is no constructor (like for a class) or no instantiated object, you should use
add()
action function this way:add_action( 'the_hook', 'the_hooked_function', $priority, $nb_of_args );
这篇关于支付成功后,Woocommerce中触发What hook的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:支付成功后,Woocommerce中触发What hook
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01