Re: Your Store Gift Cards (plastic, etc) - not working yet?
is there any alternative module for this that would work with 1.5.0 ? i see this module been abandoned for some reason, but it is so useful. we are having problems with our gift certificates, because our customers are "old school" and think its very complicating process (to buy, to wait for the approval, then login and send it to someone, then someone have to redeem it.. etc... we had too much complaints, so we try to make it more simplified). The idea is customer buy a gift certificate for someone, we treat it as a product, print it and mail it to whomever it was purchased for, and they redeem it at the checkout. plastic cards would be ideal module if it would show the balance on card, and would work with 1.5.0 . any advise would be very appreciated. thanks.
Re: Your Store Gift Cards (plastic, etc) - not working yet?
Quote:
Originally Posted by
getyler2
it errors out.
How exactly does it "error out"?
What's in your myDebug-xxxxxx.log files?
Re: Your Store Gift Cards (plastic, etc) - not working yet?
Hi DrByte,
I don't see any values in "Sold on Order#" column at the backend. Any thoughts?
- Thanks
Re: Your Store Gift Cards (plastic, etc) - not working yet?
Quote:
Originally Posted by
vivek_advsol
Hi DrByte,
I don't see any values in "Sold on Order#" column at the backend. Any thoughts?
- Thanks
Okay. I have modified the line 556 (SQL) at "\includes\modules\order_total\ot_giftcard.php" to
Code:
$giftcard_query = "update " . TABLE_GIFTCARDS . " set giftcard_balance = '" . $new_giftcard_amount . "',sale_order='".(int)$insert_id."' where giftcard_code = '" . strval($giftcard_code) . "'";
. It always adds the latest order-number the card was used against (its enough for me). Hope I am not breaking the code!!!
Re: Your Store Gift Cards (plastic, etc) - anyone using this yet?
I have installed the files. The module order total works and is installed for the giftcard. I am using most current version of Zencart. When I go to tools, giftcard manager, I get a blank page. it is mywebiste/adminame/zencart/giftcard_admin.php. Not sure what I am doing wrong. Thanks. Also is there a way for a customer to enter more than one gift card on one order.
Re: Your Store Gift Cards (plastic, etc) - anyone using this yet?
Other than for people who are actually creating physical gift cards, is there any reason to use this mod instead of just the plain old built-in GV system? I'm not positive I get it.
Re: Your Store Gift Cards (plastic, etc) - anyone using this yet?
I have this installed. Works great! I do have a question, How can I prevent a customer using their card if the total amount that is suppose to be?
For an example $25.00 gift card only for purchase of $150.00 or more. So if a customer purchase $50.00 they can't use the $25.00 Gift Card.
Re: Your Store Gift Cards (plastic, etc) - anyone using this yet?
Can anyone help me in this area?
Re: Your Store Gift Cards (plastic, etc) - anyone using this yet?
Greetings,
Downloaded latest (DrByte - 16 Mar 2013 ) and testing on localhost using ZC 1.5.4.
After initial install I went to the Tools -> Gift Card manager page and noticed that the top admin menus were not dropping down on mouse hover. Noticed that some code was missing in the giftcard_admin.php file. Below is the code I added to get it working.
FIND IN YOUR_ADMIN/giftcard_admin.php
Code:
<script language="javascript" src="includes/general.js"></script>
ADD AFTER
Code:
<script type="text/javascript">
<!--
function init()
{
cssjsmenu('navbar');
if (document.getElementById)
{
var kill = document.getElementById('hoverJS');
kill.disabled = true;
}
}
// -->
</script>
FIND
REPLACE WITH
HTML Code:
<body onLoad="init()">
How this helps others!
Re: Your Store Gift Cards (plastic, etc) - anyone using this yet?
Greetings,
Hopefully folks are still watching this thread!
Successfully installed on 1.5.4 (localhost) using default settings. After running some test orders, I don't see the gift card numbers, masked or unmasked, on the checkout page or admin order invoice as described in the giftcard_README.txt.
4. Allows for masking of numbers on checkout pages and invoices
5. Allows for displaying any number of digits (not just 4) in masks
Does anyone know if this part is working?
Thanks :D