I already tried this plugin months ago, and it was buggy.
I tried again today, hoping to find a fixed release, but I found the same bug again, but it seems just on the free version (I’ll try again the premium sandboxed as maybe the bug is there too).
It’s weird you never noticed or fixed it, as its the same bug I found 7 months ago.
But maybe the coupon code field I used is not the right one… but how can I add a specific one? Maybe with a snippet? And which snippet?
I’ll try again the premium sandboxed, as I need a simple plugin for a gift card, and If the premium is fixed, I’ll pay for it (even if maybe it’s too much as numeber of features)
Thanks
]]>First of all, thank you for your plugin.
I have been trying to translate the gift card email into the respective language for a couple of days now. The website is in Finnish and English. But when ordering the gift card on the English website, customers receive the gift card in Finnish.
I’ve used LocoTranslate as it says on their FAQ page and have synced the languages ??and checked every word of the plugin. I don’t know why the language of the email is always sent in Finnish. I would like to fix this as I have customers in both languages ??and I would not like to disappoint them with this.
Could you help me please?
Thanks in advance
]]>To ensure a smooth experience for both the customer and the recipient, I would like to request that a copy of the gift card email be sent to a custom email address. This way, if the recipient misses the email or does not receive it for any reason, I will have a copy available to promptly forward to them.
Can you please let me know if this is possible with your plugin settings? Alternatively, if this feature is not available, would you be able to provide a custom code solution where I can easily modify the recipient email address?
Thank you for your assistance.
]]>add_action('woocommerce_thankyou', 'auto_complete_zero_value_orders');
function auto_complete_zero_value_orders($order_id) {
if (!$order_id) return;
$order = wc_get_order($order_id);
if ($order->get_total() == 0) {
$order->update_status('completed');
}
}
That also had no effect. I hope that someone else can help me further. Thanks in advanced.
]]>add_action('woocommerce_thankyou', 'auto_complete_zero_value_orders');
function auto_complete_zero_value_orders($order_id) {
if (!$order_id) return;
$order = wc_get_order($order_id);
if ($order->get_total() == 0) {
$order->update_status('completed');
}
}
That also had no effect. I hope that someone else can help me further. Thanks in advanced.
]]>