I have customers complaining that the pdf coupon is unreadable.
The coupon preview is fine, but the created pdf has all the text stacked and layered onto of each other making it unreadable.
Can anyone help?
Thanks
]]>Hello – great plugin btw. – is it possible so resend a coupon-code? a customer says she didnt receive the code and i want to resend it.
Best
]]>I keep getting the above error message. What is the required size and format of the logo to get accepted??
]]>is it compatible with WPML?
]]>Hi there,
Lately I’m getting more and more customers that complain about the discount (already used).
The coupon codes are sent when the order is completed. I have a feeling that when I complete multiple orders in the same minute, only one discount code is generated for all those orders.
Could that be a problem? And is there a Fix?
Is this plugin still supported?
Hi
We accidently updated our webshop to following
WooCommerce 3.8.1
WordPress 5.3.1
And we’re running
WooCommerce Gift Coupon 3.3.0
After the update the module do not sent out coupons to our customers anymore. We do understand that your plugin is not align with the versions we are running on WP and WooCommerce.
Do you have any estimate on when your plugin will work with those versions?
Best regards
Anders Helbo
Is there a possibility to change the used mail-template.php-File to an own mail-template.php file which lies in my child-theme? Can I use some script inside my function.php for it?
I would like to style it a little more than it is offered by default.
Thank you for answering!
Hi
I would like yo contribute to fixing some bugs on this plugin.
In particular, the one preventing to use HTML in emails.
How can I contribute? I am not familiar with SVN. I would prefer a pull request on github if possible.
Can you please tell me how and where I can submit the code (in any way you wish)? The code is ready already.
Thanks in advance
]]>hi,
this plugin does not work fully on our wp.
can we contract you to integrate it?
ps:
sorry, we do not use slack,
we steer clear of cloud-based proprietary products like slack
As your description said, ” Generate coupon code PDF and send it by email or download manually on the user profile.”
But I can’t find the place to download the coupon in the user profile.
]]>
I have set up the plugin and generated a product. I have chosen the option “Generate coupons on processing order status”. Coupons are neither generated nor sent.
]]>Hi there,
I noticed some weird behavior.
I’ve set up “Generate coupons automatically on complete order status”
But sometimes looks randomly, the mail is send again (days or weeks later) without any action of the admin.
What could cause this? And how can this be resolved?
]]>no html allowed on woocommerce_gift_coupon_email_message
Pls remove esc_html on it
]]>Hi, can I update the code used to generate the voucher, or, it’s structure is used somewhere for validation purposes for example?
]]>We need a simple option: to have an option in the cart to buy not the product selected but a giftcoupon for it. So no separately predefined coupons, but a predefined and existing product from the cart sold as a coupon. (checkbox – buy this as a giftcoupon where it generates just that) Nothing fancy, just the product as-is.
]]>Hi!
Is there a possibility to create the coupon in a way, that it is working until it’s amount is exhausted? For example if the coupon is worth 60€ and I use it to buy a product for 30€, it can not be used another time because I set the quantity limit to 1, but the other 30€ are gone. How can I solve this?
Very much looking for an answer!
Best regards,
Lisa
please can you add or tell me if this possilbE?
i dont want the pdf, would prefer to send a simple email with the voucher in HTML in the body. can you do this ? maybe didnt find it. thks
hi guys the plugin is greast but is missing a ESSENTIAL feature thast is to set how many times the same coupon can be used. for example in my case I need to be able to make it work 3 times. are you planning to add this? I can pay you instead of buying a premium plugin, I think its fair.
]]>Thanks for this plugin, I will consider donating if I ever get it working and someone actually buys a coupon from me, I’ve had this problem for a while now.
I think I read somewhere that others had it too. In my WordPress dashboard The WooCommerce Gift Coupon keeps telling me I need to update the settings, I’ve spent hours fiddling with the size of my logo thinking it was that as I’ve had similar problems recently with the PayPal cart API getting the correct Paypal header image, logo etc in Woocommerce settings (gave up on that), in the end I just removed my logo to get it working, I thought this might be the same issue but I have no way of knowing.
I dismiss the notification and it still comes back.
I tried numerous sizes and files for my logo, still won’t work.
I have no idea if it’s a false flag or if there really is something wrong with my logo or the settings or if it’s even related.
The notification is still there like as if I only just installed the plugin even though I’ve had it on there for months.
The logo appears to be working ok if I go to the product and view the coupons but I had no idea what the ideal file size or pixel size should be, especially if they are printing a pdf, I want it to be the best quality allowed without being oversized, I tried using the size that PayPal recommend for their shopping cart.
Your time and help are appreciated.
Thank you.
Hi,
is it possible to use some placeholders like the order date or the customers name in the email?
TIA!
]]>Hola.
Estoy creando productos para una tienda de estética. Son bonos, que tienen variaciones.
Después haberlos creado ?puedo asignar los cupones que genera el plugin a esos productos?
Gracias
If users buy a coupon in my webshop, PDF and coupon code generation works fine but the amount in the Woocommerce coupon is set at 0. It’s a variable product (users can choose an amount 25, 50, 75). Every product has a different price.
Both with sending at completed and processing order status.
Can you fix that?
Dear Alberto,
I’ve used your plugin for quite some time in an older version and let the shopuser create the coupons manually.
I’ve now updated to version 3.3 and tested the setting “Generate coupons on processing order states”.
I made a test buy with on email-address, which is not the “from” Email address…
When customer is paying via check or manual payment method and the status of the order is set to “processing” everything is fine!
When customer is paying via paypal the coupons are send twice.
Any help, how this can be fixed?
best regards,
Martin
Hi,
thanks for this very helpful plugin! I experienced a problem today, which is easily solvable and I suggest to add a small fix to the plugin, which should also improve the plugin security a bit.
My problem was as follows: The uploaded logo image was not shown on the gift card pdf. This was because I have allow_url_fopen disabled in php for security reasons. However, it is not necessary to enable allow_url_fopen in order to fix this. A small code adjustment does the trick:
In gs-middle-options-page.php, change line 35 from
update_option( 'woocommerce_gift_coupon_logo', $file['url'] );'
to
update_option( 'woocommerce_gift_coupon_logo', $file['file'] );
I see no reason, why the image should be accessed by url when the script is executed on the same server and can be accessed by specifying the path to the image as above.
Of course, this breaks the logo preview in the admin panel, but this can also be solved easily. Change line 68 from
$woocommerce_gift_coupon_logo = get_option( 'woocommerce_gift_coupon_logo' );
to
$woocommerce_gift_coupon_logo_dir = get_option( 'woocommerce_gift_coupon_logo' );
$woocommerce_gift_coupon_logo = wp_upload_dir()['url'] . substr($woocommerce_gift_coupon_logo_dir, strrpos($woocommerce_gift_coupon_logo_dir,'/'));
That’s all and it doesn’t force the server to enable allow_url_fopen.
Another question: Why is it not possible to select an image from the media library. That would be a quick thing too and would prevent uploading the logo for a second time. Additionally, the logo could be managed from the media library as any other image. Technically not necessary, but would be nicer, I think.
Thanks for your work on this plugin, again!
]]>When I add formatting to the text in the email field (whether in visual or text) it reverts to plain no-wrap lines in visual or reformatted code in text mode.
ex. After Saving (text mode changes to Visual)
Thank you for your purchase.
<p>We will redeem your coupon for you.</p> <p>Thank you, The Team </p> https://myDomain.com
It should show in Visual as you expect the code to render, but when viewed after saving in text mode it shows like:
Thank you for your purchase.
<p>Your Server will redeem your coupon for you.? This coupon is not redeemable for cash. </p> <p>? Thank you, The Butcher Block Grill Team </p> https://ButcherBlockGrill.com
Please Help!
]]>Hi ,
I have used this plugin on my website. I am using freeplugin. Administrator can do all , but I have created a user who don’t have administrator access but can see the orders received . So when this user trying to see the PDF generated (that is getting sent to customer upon gift purchase) , the system says “Sorry, you are not allowed to access this page.” . So can anyone help on this to resolve this with free version?
]]>Hello,
Is it possible to add a Gift coupon Tab on my account page to show Gift Coupon please?
It would much convenient for customer to check the Gift coupon that they buy.
Thanks and have a nice day.
]]>I have had this plugin a while but after an update I get this message on every backend page:
“WooCommerce Gift Coupon plugin has been activated. Please go to the plugin’s settings and configure this plugin!”
I have configured it and saved, time after time, but the message will not go away.
]]>When the coupon is bought twice or more, only the first coupon will generate correctly. after that, the coupon restrictions (x-product or x-amount use) is not working and no coupon code will be send to the buyer. The coupon code is made in woocommerce, but the code isn’t send and doesn’t show the restrictions we gave it.
I have checked “product as gift coupon” and I tried all 3 options for generating the coupon.
The red marked numbers are working.
https://prntscr.com/mjli0o
Hello,
I have unfortunately another issue with the plugin. I cannot add logo to the pdf even if it is set in options.
Options – https://prntscr.com/mhdx8n
Preview – https://prntscr.com/mhdxnj
Best regards,
]]>