pinal.shah
Forum Replies Created
-
Forum: Plugins
In reply to: [Quotes for WooCommerce] automatic sending the quoteHi Alex,
I agree, the quotes system in WC sure can use the above feature. I’m actually developing a Pro version of the plugin and that includes this feature.
The pro version is still in development and not yet available commercially. I’ll reach out to you once it is.
Alternatively, if you can develop this feature as needed and only need me to include some hooks in the current version available on www.ads-software.com, I’ll be more than happy to do that as well.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Quote button on detail product pageHi Patrick,
I’ll try to replicate the issue at my end and share my findings with you. Just wondering, have prices been setup on the individual products?
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] How to overwrite emails templatesHi @ltrihan,
Sorry, I missed your earlier message. The path is incorrect. It should be
/quotes-for-wc/emails/request-new-quote.php
for normal HTML templates.For plain text emails it would then be
/quotes-for-wc/emails/plain/request-new-quote.php
This should work. Please let me know how it goes.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Default RecipientNo worries. Hope you enjoy using the plugin.
It would help me immensely if you would be so kind as to please consider rating the plugin here.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Default RecipientHi @spykekrepshaw,
In case if you want to send the email to multiple admin users, or other email address of your choice, you can simply add those email addresses in the WooCommerce > Settings > Emails > Request for New Quote settings.
I hope this helps.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Send Email to multiple recipientsHi @thecloudjr,
I’ve tested the code you shared at my end. You need to make some changes in your code to get it to work correctly.
Since this is a custom email generated by the plugin, the second parameter passed to it is not the WC Order object. It is an object that contains some WC order information and some quote status information.
Please note that it passes the WC Order ID and the same can be used to fetch the WC Order object.
add_filter( 'woocommerce_email_recipient_qwc_req_new_quote', 'new_recipient_email_notifications', 10, 2 ); function new_recipient_email_notifications( $recipient, $order ) { $order_id = $order->order_id; $wc_order_obj = wc_get_order( $order_id ); // Email $easterncanada_email = "[email protected]"; $westerncanada_email = "[email protected]"; // Provinces $eastern_provinces = array ('ON', 'QC'); $western_provinces = array ('BC', 'AB'); // Get user info $user_province = $wc_order_obj->get_shipping_state(); if ( empty( $user_province ) ) $user_province = $wc_order_obj->get_billing_state(); // Validating if ( in_array( $user_province, $eastern_provinces ) ) $recipient = $easterncanada_email; else $recipient = $westerncanada_email; return $recipient; }
Please let me know if this helps.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Send Email to multiple recipientsHi @thecloudjr,
Understood. I’ll check this at my end using the code you originally shared and get back to you in a day or two at the max.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Send Email to multiple recipientsHi @thecloudjr,
If I understand your requirements correctly, you want to send the email to multiple admin users? In that case, you can simply add those email addresses in the WooCommerce > Settings > Emails > Request for New Quote settings.
Please let me know if I’ve misunderstood this.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Mixing quoted and non-quoted productsHi @nxmndr,
Currently it is not possible. But I’ll consider your request and incorporate it if feasible in a future release.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Ask For Quote Payment Method NameHi Alex,
You can use the hook
qwc_payment_method_name
to change the payment gateway method name to one of your choice.Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] thankyou_page TextHi @bigaltheking,
You can use the hook
woocommerce_thankyou_quotes-gateway
. Try using it at a lower priority like 20 and that should help.I hope this helps.
Thanks,
Pinal
- This reply was modified 2 years ago by pinal.shah.
Forum: Plugins
In reply to: [Quotes for WooCommerce] How to overwrite emails templatesHi @ltrihan,
You’ve named the folder incorrectly. It should be quotes-for-wc. Please change the folder name and things should start working fine.
Tip: Next time you want to customize an email template from any plugin present in WooCommerce > Settings > Emails, please use the Copy file to theme button present in the Manage Email settings to ensure the file is setup correctly.
I hope this helps.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] build a quote from the back-officeHi @antoine69,
It’s currently now possible. I’ll add it to the feature request list and try to include it.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Send Email to multiple recipientsHi @thecloudjr,
Below are the email IDs for the emails sent by the plugin:
- <qwc_req_new_quote> is the email sent to the admin when a new order comes through.
- <qwc_request_sent> is the email sent to the customer when they place a quote request.
- <qwc_send_quote> is the email sent for the quote to the customer.
So, in order to be able to use any of the existing WC hooks, you’d have to modify the WC hook as ‘woocommerce_email_recepient_’ + the above email ID.
The above should help. Please let me know.
Thanks,
Pinal
Forum: Plugins
In reply to: [Quotes for WooCommerce] Quote Status & Payment Method IssueHi @lolomawhinney,
Can you kindly let me know the WordPress, WooCommerce and Quotes plugin versions currently active on the site?
Also, does the store support only online payment methods such as Paypal and Stripe or are offline payment methods such as COD active as well?
I’ll try to replicate the issue at my end and send you an update soon.
Thanks,
Pinal