cfm168
Forum Replies Created
-
I have submitted a ticket for this issue 2 days ago. But no response so far.
Deactivated your plugin, my site health reported has 0 critical issue.
Version 5.153.6
I reported the issue on your website. But your reply still using platform same kind of I listed above. You changed your email very often. Please use your website domain for support.
Hello @deniran,
I have version 7.6.1, but I never get notice you already have published version 7.7.1.
I reported the issue by direct email to author support more than 6 months ago and never get response. Don’t try to ask for paying renew support license again.
Please tell me what is your support email address so I can let you know my email.I contacted and communicated with the authors support emails was:
support@orionorigin.zendesk.com,
support+id869@orionorigin.zendesk.com,
support@orionorigin.freshdesk.com,
Maybe even more.Please advise. Thanks!
Forum: Plugins
In reply to: [WooCommerce] deprecations noticeHi Ross,
I deleted the old alert, so far did not produce the deprecations notice again.
Will update to here if the deprecations display again.Thank you!
Forum: Plugins
In reply to: [WooCommerce] deprecations noticeHi @rossviviano,
I can provide the plugins only to your private email, not open for everyone.
Hope you can understand. Thanks!Forum: Plugins
In reply to: [Extra Fees for WooCommerce] User – Not Equal toActually user “Not equal to” setting works to avoid the user for the fee.
I have version 3.6.1.Thanks!
Forum: Plugins
In reply to: [WooCommerce] deprecations noticeHi @rossviviano,
Thank you for prompt response.
see the status screenshots:
https://ibb.co/XDtWqdX
https://ibb.co/4pK0pS4Forum: Plugins
In reply to: [Extra Fees for WooCommerce] User – Not Equal toI tested to input a user in “Not equal to” list, the fee still applied on Checkout. Please advise.
Hi @dpeyou,
I also want to add the Shipping company name to be printed.
To print the shipping company name, I need to use the _wcst_order_trackname key. The _wcst_order_trackurl is instead the company code.
The code structure is similar to the one you already used:
$shipping_company = $tracking_meta[‘_wcst_order_trackname’][0];
echo $shipping_company;Print on Invoice like this:
Shipping Company:
Tracking Number:
Shipping Date:Please help again. Thanks in advance!
Yes, it works now. Thank you so much @dpeyou !
★★★★★Still not working.
You can see the result here: https://ibb.co/2SnTbJg
There is also unexpected NAN letters displayed.Note: There are 2 missing spelling for tracking in your code (traking). I corrected them but the issue persist.
Hi @dpeyou,
The plugin author talked me your code just simply missing to echo the values.
The right code is:
<?php echo $shipping_tracking_num ?>
<?php echo $dispatch_date; ?>Can you please add this to complete your code? Thanks in advance!
Hi @dpeyou,
Thank you for your quick response. Now I can see the following printed on all previous Invoices.
Tracking Number:
Shipping Date:But the value does not show up. Is it because of previous invoices? Will works for new invoice?
Please advise. Thanks!
Hello Ewout,
The author made a correction, and sent me new code as below (between the lines):
—————————————————————————————
global $wcst_order_model, $wcst_time_model;$tracking_meta = $wcst_order_model->get_order_meta($order_id);
$shipping_traking_num = $tracking_meta[‘_wcst_order_trackno’][0];$dispatch_date = isset($tracking_meta[‘_wcst_order_dispatch_date’][0]) ? $tracking_meta[‘_wcst_order_dispatch_date’][0] : __( ‘N/A’, ‘woocommerce’ ) ;
$dispatch_date = $wcst_time_model->format_data($dispatch_date);
—————————————————————————————Please help and give me your code so I can put them on my child theme functions file. Thanks in advance!