在 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_completea 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
以编程方式将可下载文件添加到 Woocommerce 产品Add programmatically a downloadable file to Woocommerce products(以编程方式将可下载文件添加到 Woocommerce 产品)
获取今天 Woocommerce 中每种产品的总订单数Get today#39;s total orders count for each product in Woocommerce(获取今天 Woocommerce 中每种产品的总订单数)
在 WooCommerce 和电话字段验证问题中添加自定义注Add Custom registration fields in WooCommerce and phone field validation issue(在 WooCommerce 和电话字段验证问题中添加自定义注册字段
在 Woocommerce 简单产品中添加一个将更改价格的选Add a select field that will change price in Woocommerce simple products(在 Woocommerce 简单产品中添加一个将更改价格的选择字段)
在 WooCommerce 3 中将自定义列添加到管理产品列表Add custom columns to admin products list in WooCommerce 3(在 WooCommerce 3 中将自定义列添加到管理产品列表)
自定义结帐“下订单"按钮输出htmlCustomizing checkout quot;Place Orderquot; button output html(自定义结帐“下订单按钮输出html)