Gift / Discount Vouchers - checkout NOT cart 1.5
27 posts
• Page 1 of 2 • 1, 2
Gift / Discount Vouchers - checkout NOT cart 1.5
Please Please can some one give us the coding to make the gift / discount vouchers part of the checkout process instead of leaving it in the cart.
My customers just aren't seeing it, even redirecting them isn't working.
Thanks
Ron
My customers just aren't seeing it, even redirecting them isn't working.
Thanks
Ron
- ronnieb
- Posts: 74
- Joined: Tue May 24, 2011 7:44 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Hi,
I'm also looking for this solution.
I've found that a gift voucher or a coupon can ONLY be added
after you've bought successfully a gift voucher and continue the
check out process.
Otherwise there is no place for a gift voucher or coupon adding
in the normal check out process of v1.5x, at least I couldn't find
from the demo v1.5.
Why? It's funny.
I'm also looking for this solution.
I've found that a gift voucher or a coupon can ONLY be added
after you've bought successfully a gift voucher and continue the
check out process.
Otherwise there is no place for a gift voucher or coupon adding
in the normal check out process of v1.5x, at least I couldn't find
from the demo v1.5.
Why? It's funny.
- daniel2008
- Posts: 81
- Joined: Wed Jul 07, 2010 12:54 pm
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
ronnieb wrote:Please Please can some one give us the coding to make the gift / discount vouchers part of the checkout process instead of leaving it in the cart.
My customers just aren't seeing it, even redirecting them isn't working.
Thanks
Ron
I placed it in the welcome message and the description. I think it should probaly be in the checkout as well. Maybe the checkout process should start with view cart so they can apply the coupons. It is confusing a lot of people.
- dbhawkins
- Posts: 7
- Joined: Mon May 30, 2011 3:19 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
daniel2008 wrote:Hi,
I'm also looking for this solution.
I've found that a gift voucher or a coupon can ONLY be added
after you've bought successfully a gift voucher and continue the
check out process.
Otherwise there is no place for a gift voucher or coupon adding
in the normal check out process of v1.5x, at least I couldn't find
from the demo v1.5.
Why? It's funny.
well the problem is that the checkout button from the top shopping cart goes to the checkout instead of the shopping cart page and the coupon is on the shopping cart page. But it's there weather or not you've purchased a voucher.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
I can't understand the reasoning from admin "that there isn't room for it in the checkout page"
its in the checkout page of 1.4 so whats the difference.
This is the reason Im not using 1.5 and sticking with 1.4, I rely heavily on discount coupons
its in the checkout page of 1.4 so whats the difference.
This is the reason Im not using 1.5 and sticking with 1.4, I rely heavily on discount coupons
- pierrelejohn
- Posts: 17
- Joined: Fri Jun 10, 2011 8:28 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
pierrelejohn wrote:I can't understand the reasoning from admin "that there isn't room for it in the checkout page"
its in the checkout page of 1.4 so whats the difference.
This is the reason Im not using 1.5 and sticking with 1.4, I rely heavily on discount coupons
well that's not the only reason. payment methods like paypal express and google checkout go from the shopping cart page and skip the checkout procedure all together how would you allow those people to use a discount code? No matter where you put it someone is not going to like it. We know it's been in pretty much every position possible. The biggest problem is that in 1.5 Daniel made the checkout button skip the cart.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
I use neither of those payment providors, it a shame that its not an option to either have it on the cart or the checkout, or even simpler - add it to both, then if customers use one or the other - EVERYONE can find it !!
- pierrelejohn
- Posts: 17
- Joined: Fri Jun 10, 2011 8:28 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
For the coupon fix:-
Could you not just change the Checkout link to actually just take people to the Cart page?
It involves changing on line of code in the header file
catalog/view/theme/default/template/common/header.tpl around line 107
to
Basically the second last checkout changed to cart
Just a though....
Cheers,
Michael
Could you not just change the Checkout link to actually just take people to the Cart page?
It involves changing on line of code in the header file
catalog/view/theme/default/template/common/header.tpl around line 107
- Code: Select all
<div class="links"><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a><a href="<?php echo $wishlist; ?>" id="wishlist_total"><?php echo $text_wishlist; ?></a><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a><a href="<?php echo $cart; ?>"><?php echo $text_cart; ?></a><a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a></div>
to
- Code: Select all
<div class="links"><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a><a href="<?php echo $wishlist; ?>" id="wishlist_total"><?php echo $text_wishlist; ?></a><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a><a href="<?php echo $cart; ?>"><?php echo $text_cart; ?></a><a href="<?php echo $cart; ?>"><?php echo $text_checkout; ?></a></div>
Basically the second last checkout changed to cart
Just a though....
Cheers,
Michael
- sofaking
- Posts: 6
- Joined: Thu Jul 07, 2011 10:53 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
I agree. The gift cert/voucher should actually be a form of payment. This is the only really out of place component on opencart. If it is not in the next update I will be attempting to modify this myself.
- mattQuest
- Posts: 6
- Joined: Tue Aug 02, 2011 8:58 pm
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Hi all,
I have made the change to my header.tpl as described. My only thought now is the Checkout button on what I can only describe as the mini cart still points directly to checkout instead of the shopping cart. Does anyone know how to change this? I am not sure.
Thank you,
Jeremy.
I have made the change to my header.tpl as described. My only thought now is the Checkout button on what I can only describe as the mini cart still points directly to checkout instead of the shopping cart. Does anyone know how to change this? I am not sure.
Thank you,
Jeremy.
- jprknight
- Posts: 3
- Joined: Sat Aug 06, 2011 9:03 pm
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
There is a free vQmod in the vQmods section of the Free Contributions that warns users if they click the Header checkout link.
Just going to update it so it applies to the MiniCart Drop down as well.
Just going to update it so it applies to the MiniCart Drop down as well.
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Hi,
I'm not using vQmod right now. Does anyone know how this can be changed without?
Thanks,
Jeremy
I'm not using vQmod right now. Does anyone know how this can be changed without?
Thanks,
Jeremy
- jprknight
- Posts: 3
- Joined: Sat Aug 06, 2011 9:03 pm
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
download the vqmod files anyway and look at their contents
search = code to find and replace
if offset exists as part of the search tag = also replace this number of lines after the search tag
BACKUP BACKUP BACKUP
search = code to find and replace
if offset exists as part of the search tag = also replace this number of lines after the search tag
BACKUP BACKUP BACKUP
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Thanks I have now installed vqmod and added the mods you mention. These work great. Thank you! 

- jprknight
- Posts: 3
- Joined: Sat Aug 06, 2011 9:03 pm
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
I added a message on the Checkout page with a link to the Shopping Cart page :
http://www.flowershopputney.co.uk/index ... t/checkout
Its a bit crude but at least it gives people who have a coupon or voucher code a chance to redeem it and if not they can just continue with the checkout process!
Let me know if you have a better way of doing this please, I'd be quite happy to pay for an extension etc as usual.
Cheers
Warren
http://www.flowershopputney.co.uk/index ... t/checkout
Its a bit crude but at least it gives people who have a coupon or voucher code a chance to redeem it and if not they can just continue with the checkout process!
Let me know if you have a better way of doing this please, I'd be quite happy to pay for an extension etc as usual.
Cheers
Warren
-

Rabbitdigital - Posts: 18
- Joined: Sun Jul 03, 2011 11:10 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Rabbitdigital wrote:I added a message on the Checkout page with a link to the Shopping Cart page :
http://www.flowershopputney.co.uk/index ... t/checkout
Its a bit crude but at least it gives people who have a coupon or voucher code a chance to redeem it and if not they can just continue with the checkout process!
Let me know if you have a better way of doing this please, I'd be quite happy to pay for an extension etc as usual.
Cheers
Warren
Hi Warren, I would like to do the same as you, very new to all this, which file did you edit and what code did you add in.
Many Thanks,
Lee
- amcitsolutons
- Posts: 8
- Joined: Fri Sep 09, 2011 10:32 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Does anyone know what this vqmod is called - can't find it :-)
- emilygraham
- Posts: 40
- Joined: Wed Sep 14, 2011 11:26 am
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
I have added a message and link at the top of the checkout page prompting anyone with a voucher on a clients site:
If you have a discount or gift voucher please redeem it by going to the Shopping Cart and entering your code - click here
You can see it here:
http://www.dorchestersaddlery.co.uk/ind ... t/checkout
FYI - I did this by going to modules --> welcome
Then I added new module (module2) and positioned it [Content Top] on the [Checkout] page using the drop downs.
If you have a discount or gift voucher please redeem it by going to the Shopping Cart and entering your code - click here
You can see it here:
http://www.dorchestersaddlery.co.uk/ind ... t/checkout
FYI - I did this by going to modules --> welcome
Then I added new module (module2) and positioned it [Content Top] on the [Checkout] page using the drop downs.
-

cocoamedia - Posts: 12
- Joined: Tue Jun 28, 2011 5:18 pm
- Location: UK
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
cocoamedia wrote:I have added a message and link at the top of the checkout page prompting anyone with a voucher on a clients site:
If you have a discount or gift voucher please redeem it by going to the Shopping Cart and entering your code - click here
You can see it here:
http://www.dorchestersaddlery.co.uk/ind ... t/checkout
FYI - I did this by going to modules --> welcome
Then I added new module (module2) and positioned it [Content Top] on the [Checkout] page using the drop downs.
When I try to buy a voucher on your site I get:
Fatal error: Call to undefined function filter_var() in /home/.sites/137/site24/web/catalog/controller/checkout/voucher.php on line 228
Rgds,
- sunriser
- Posts: 24
- Joined: Sun Dec 18, 2011 12:03 pm
Re: Gift / Discount Vouchers - checkout NOT cart 1.5
Just wanted to add my voice to the need for coupon codes at checkout. It's standard on most every site that supports coupons. This being the case, people are going to be confused until it's there in OC.
Thanks to everyone who's supplying patches in the mean time.
Thanks to everyone who's supplying patches in the mean time.
- NotionJohn
- Posts: 9
- Joined: Wed Feb 15, 2012 4:09 pm
27 posts
• Page 1 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 11 guests













