Madhuben Prajapati
Forum Replies Created
-
1. but can we kept it vertical and single click, so it will solve both problem
2. we are using free version, it is not a mobile friendly
Thank you for your help,
It is solved$message .= sprintf(__("Your order's tracking information was updated with %s and your tracking code is: %s", 'woo-advanced-shipment-tracking'), $tracking_item['tracking_provider'], $tracking_item['tracking_number'] );
Dear Sir,
Your code is working fine,
Now one last help required, that in above message,
we also want to send tracking link,
For the same we can use below code?$message .= sprintf(__("Your order's tracking information was updated with %s and your tracking code is: %s" and your tracking link is %s, 'woo-advanced-shipment-tracking'), $tracking_item['tracking_provider'], $tracking_item['tracking_number'], $tracking_item['formatted_tracking_link'] );
Thank you so much for your help
/** * Add tracking info in SMS when order status is completed * Compatibility with - WC – APG SMS Notifications * */ public function apg_sms_message_fun($message , $order_id){ $order = wc_get_order( $order_id ); $order_status = $order->get_status(); if($order_status == 'completed'){ $ast = new WC_Advanced_Shipment_Tracking_Actions; $tracking_items = $ast->get_tracking_items( $order_id ); if ( count( $tracking_items ) > 0 ) { foreach ( $tracking_items as $key => $tracking_item ) { $message .= '<br>'; $message .= sprintf(__("Your order was shipped with %s and your tracking code is: %s", 'woo-advanced-shipment-tracking'), $tracking_item['tracking_provider'], $tracking_item['tracking_number'] ); } } } return $message; }
Dear Sir,
Your Plug in Sent the message to the order status completed,
So now just tell me How can I stop this message to send,Because i already sent different message to completed status,
And your plugin unwantedly add other message behind my pre-decided messagewe are happy if additionally you can help us in this case : we want to send the message while order status is updated tracking,
and also we want to customize this messageAwating for your responce because message is more important to us rather then mail
hey!!! we are talking about message, with WC-APG-SMS-Notifigation
Presently message is sent while order status change to completed,
But we want to send the message while order status is updated tracking,
and also we want to customize this message.
any suggestion to convert this variables???
and if i again import the same file which was exported,
then all short description was thrashed with special characters…The uploaded short description of product is
”
> No Extra Charges For Delivery
> Delivery Within 3-4 Working Days
”and in Exported CSV file we get the output is
”
&g t; No Extra Charges For Delivery\n&g t; Delivery Within 3-4 Working Days
“- This reply was modified 4 years, 10 months ago by Madhuben Prajapati. Reason: special character not showing as i typed
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Changing Embeded Product Image Sizethank you,
It’s workingForum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Two different exportthnak you ??
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Two different exportwe export our orders with the field named Embedded Product Image,
But we got the cropped image in our exported file,
So we want help, so that we can get full image in our exported file,For that,
we have tried to change height and width at many places in WordPress,
but still we get cropped image in our exported file,
Please help so we can get full image in our exported file.Please help us to solve this use
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Changing Embeded Product Image SizeIf we use below code, didn’t get the output,
Can you please suggest code for the samefunction image_hwstring( $width, $height ) {
$out = ”;
if ( $width ) {
$out .= ‘width=200″‘ . intval( $width ) . ‘” ‘;
}
if ( $height ) {
$out .= ‘height=300″‘ . intval( $height ) . ‘” ‘;
}
return $out;
}