Massoud Shakeri
Forum Replies Created
-
Forum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Edit email content text.It means woocommerce is mixing “processing” status with Completed” status. because what you did is about processing status, and it affects the completed email.
Hopefully for the next version, I will come up with a better solution.Forum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Edit email content text.Please tell me what exactly you did to fix it
Forum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Edit email content text.first make sure you have the latest version of the plugin.
If you have modified the email template of woocommerce->Settings->emails->Completed order, please check what may cause this.
If you edit the plugin php file, line 350, it should read like this:
public function email_instructions( $order, $sent_to_admin, $plain_text = false ) {
if ( $this->instructions && ! $sent_to_admin && ’emt’ === $order->payment_method && ( $order->has_status(‘on-hold’) || $order->has_status(‘processing’) || $order->has_status(‘pending’) ) ) {
you can remove “$order->has_status(‘processing’) || ” part of it, if you do not want that instruction in processing email.Forum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Edit email content text.Hi,
If in the Woocommerce->Settings->Checkout->Email-money-transfer in description field, there are html tags that is not closed, it may corrupt the rest of the content. So if that’s the case, please make sure all the html tags are closed.
The latest version of this plugin only includes this instructions to the email_instructions of “processing”, “pending”, and “on-hold” statuses, so it should not be in completed order email.Forum: Plugins
In reply to: [BLAZING Shipment Tracking] Courier Not Showing Up in order details drop downHi,
there was a mistake in the code that whenever it wrapped a line in textarea, it added a break and made the json invalid.
I fixed that, so if you are still interested please test if it works for you.
Thanks
MassoudForum: Plugins
In reply to: [BLAZING Shipment Tracking] country code shortcodeHi,
I added {shipping_country} replacement in the url, in the new version.
Also the new version should have dutch translation.
please test if it’s working for you.
Regards
MassoudForum: Plugins
In reply to: [BLAZING Shipment Tracking] fatal errorwould you please update me about the error you reported?
Forum: Plugins
In reply to: [BLAZING Shipment Tracking] Courier Not Showing Up in order details drop downWould you please update me if that worked for you
Forum: Plugins
In reply to: [BLAZING Shipment Tracking] Courier Not Showing Up in order details drop downI tested them and with a little change they worked for me:
– make sure all quotes are ASCII double quotes or single quotes
– every item should be in one line, and do not break them in two lines
– after colon ‘:’ please add a space for clarity.
– after the last item do not add ‘,’[
{
“slug”: “usps”,
“name”: “USPS”
}
]
and
[
{
“slug”: “canada-post”,
“name”: “Canada Post”,
“url”: “https://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?trackingNumber={tracking_number}&LOCALE=en”
},
{
“slug”: “fedex”,
“name”: “FedEx”,
“url”: “https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber={tracking_number}”
},
{
“slug”: “usps”,
“name”: “USPS”,
“url”: “https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1={tracking_number}”
}
]
and
[
{
“slug”: “canada-post”,
“name”: “Canada Post”,
“url”: “https://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?trackingNumber={tracking_number}&LOCALE=en”
},
{
“slug”: “fedex”,
“name”: “FedEx”,
“url”: “https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber={tracking_number}”
},
{
“slug”: “usps”,
“name”: “USPS”,
“url”: “https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1={tracking_number}”
}
]
and
[
{
“slug”: “usps”,
“name”: “USPS”,
“url”: “https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1={tracking_number}”
}
]Forum: Plugins
In reply to: [BLAZING Shipment Tracking] Courier Not Showing Up in order details drop downwould you please copy the text you enter for couriers
Forum: Plugins
In reply to: [BLAZING Shipment Tracking] Courier Not Showing Up in order details drop downHi,
I think that happens when the settings are not saved in the database. I will look at the issue to see if I can improve it.
In the meanwhile, I suggest you modify the text in the textbox and save it again. When it’s saved, the drop down should show up.
the entry for the settings is named “bst_option_name” which is in options table in the database, just in case you want to verify what is saved as settings.Forum: Plugins
In reply to: [BLAZING Shipment Tracking] fatal errorSorry about that. I hope this time you will not get the error.
Forum: Plugins
In reply to: [BLAZING Shipment Tracking] fatal errorHi,
thanks for letting me know about this error.
I hopefully fixed it, so please try the new update and see if it works for you.
MassoudForum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Can’t select shipping methodThanks for letting me know about the issue.
I hopefully fixed it in the new version.
Please update the plugin and see if it works for you the way it should.
Woocommerce updates regularly, and usually we don’t know what else they have changed, until a problem shows itself.Forum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Secret answer in admin emailHi,
This is so for a security reason:
If someone knows your email password, he can log-in and deposit the transferred money to his own account, and no one can dispute or refund the transaction.
The chance of someone to have access to both email and the website back-end is much lower.