支付成功后,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 );
相关文章