Repon Hossain
Forum Replies Created
-
Forum: Plugins
In reply to: [Freight Shipping Quote] country from Adres not correctActually the address field is not dynamic field. User need to enter shipping address manually.
Forum: Plugins
In reply to: [Freight Shipping Quote] country from Adres not correctHi @joel2019 ,
Thank you for giving feedback. The address field is prefilled for logged-in users. Users should update this field before requesting a shipping quote. This field will not update depending on the checkout fields. But the address field will update automatically if the user updates his/her shipping address and reloads the site.
Thanks,
ReponForum: Plugins
In reply to: [Freight Shipping Quote] Link not showHi @muph
Please use [woocommerce_checkout] shortcode on the checkout page. Our plugin still does not support the block of woocommerce. We are still working on it.
Thanks,
ReponForum: Plugins
In reply to: [Freight Shipping Quote] PHP error Undefined Array keyHi Joel,
I have fixed it and released a new version. Please update the plugin.
Thanks,
Repon HossainForum: Plugins
In reply to: [Freight Shipping Quote] quote timeHi Nikki,
I’ll add this feature soon.
Thanks,
ReponForum: Plugins
In reply to: [Freight Shipping Quote] Multilingual websiteHi Nikki,
Please open a ticket on polylang plugin.
Thanks,
ReponForum: Plugins
In reply to: [Freight Shipping Quote] Multilingual websiteHi @joel2019,
Here is the guideline of polylang plugin for translate email https://polylang.pro/doc/translating-woocommerce-urls-and-strings/
Thanks,
Forum: Plugins
In reply to: [Freight Shipping Quote] Multilingual websiteHi @joel2019 ,
I have released the new version after adding multilingual (Polylang) support. But remember that you need to use “Polylang for WooCommerce”.
Don’t forget to leave a review of this plugin.
Thanks,
ReponForum: Plugins
In reply to: [Freight Shipping Quote] Multilingual websiteHI @joel2019 ,
I am very sorry that this plugin does not currently support multi-language. I will add this feature within a day. So you will see the update on the next version.
Thanks,
Repon HossainForum: Plugins
In reply to: [Freight Shipping Quote] New Cart Mismatch facilityHi @baz74 ,
I have released a new version. I have added a few settings on the settings page for localization. You can easily update texts from there.
Thanks,
Repon HossainForum: Plugins
In reply to: [Freight Shipping Quote] Need to change the ‘Subject’ line of the emailsHere is the ID of the other two emails
1. freight-shipping-quote-approved
2. freight-shipping-quote-updatedForum: Plugins
In reply to: [Freight Shipping Quote] Need to change the ‘Subject’ line of the emailsHi @baz74 ,
Here is the updated code.
function your_theme_set_email_priority($headers, $email_id) { if( ! ( 'freight-shipping-quote-new' == $email_id ) ) return; $headers .= "X-Priority: 1\n"; $headers .= "Priority: Urgent\n"; $headers .= "Importance: high"; return $headers; } add_filter('woocommerce_email_headers', 'your_theme_set_email_priority', 100, 2);
Forum: Plugins
In reply to: [Freight Shipping Quote] Need to change the ‘Subject’ line of the emailsHi @baz74
You should put code like this below
function your_theme_set_email_priority($headers, $email_id) { if( ! ( 'shipping-quote-new' == $email_id ) ) return; // only for Freight 'shipping-quote-new' emails $headers .= "X-Priority: 1\n"; $headers .= "Priority: Urgent\n"; $headers .= "Importance: high"; return $headers; } add_filter('woocommerce_email_headers', 'your_theme_set_email_priority', 100, 2);
Let me know after checking.
Hi @andresramirezduque ,
I just checked your site and the plugin is working perfectly. Here you can see the video https://www.loom.com/share/55fff05a8b8e487abe3aacfd2d91e19f. Let me know If you still see the problem.
Thanks,
ReponThank you for your message. Have you updated the last version?