Shravan Shrama
Forum Replies Created
-
Hi @oguz,
You are just amazing this works perfectly.
These changes will be included in next update. right?
Hi @coderontheroad,
Thanks for paying attention to this. I’m just trying to add new column to admin appointment list by using these two hooks…
1)
apply_filters( 'appointments_my_appointments_list_columns', $columns )
2)do_action( 'appointments_my_appointments_list_row', $app )
but these changes breaks admin appointment list table.
Thanks
ShravanHello @kaisa,
Sorry for the delayed response from my side.
Now I have two question for you :1). can we stop appointment to go to Removed status even time has passed?
2). How can we add new column to appointment admin list?
What i have tried so far….
I have use
apply_filters( 'appointments_my_appointments_list_columns', $columns )
filter to add new column anddo_action( 'appointments_my_appointments_list_row', $app )
to add new column value.The problem is with value it repeated with each column. I think
do_action( 'appointments_my_appointments_list_row', $app )
should be outside the$column
loop or it may have$key
as second parameter likedo_action( 'appointments_my_appointments_list_row', $app, $key )
.Please help me to resolve the issue.
Thanks
ShravanForum: Plugins
In reply to: [WooCommerce] Bug : WC 2.3.6 WC_Emails->send() function returning NULLWhat i’m trying
I’m trying to digging out the woocommerce code and find the woocommerce use this file to send email
woocommerce/includes/class-wc-emails.php
Around line no. 214 I found the send method.
I have change the code
$email->send( $to, $subject, $message, $headers, $attachments );
to
$return = $email->send( $to, $subject, $message, $headers, $attachments );
return $return;Forum: Plugins
In reply to: [TT Extra Fee Option for WooCommerce] Checkbox if user wants to add feeHey did you succeed?
I also need something similar…