Community Forums

Gift / Discount Vouchers - checkout NOT cart 1.5

Enter all OpenCart 1.x feature requests here. One idea per topic. Please search the forum to see if your feature has already been requested

Gift / Discount Vouchers - checkout NOT cart 1.5

Postby ronnieb » Tue Jun 21, 2011 7:50 am

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
ronnieb
 
Posts: 74
Joined: Tue May 24, 2011 7:44 am

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby daniel2008 » Thu Jun 23, 2011 12:30 pm

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.
daniel2008
 
Posts: 82
Joined: Wed Jul 07, 2010 12:54 pm

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby dbhawkins » Mon Jun 27, 2011 9:02 pm

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

Postby Xsecrets » Mon Jun 27, 2011 9:21 pm

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.
Xsecrets
 
Posts: 5042
Joined: Sat Oct 24, 2009 7:51 pm
Location: FL US

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby pierrelejohn » Thu Jun 30, 2011 10:53 am

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
pierrelejohn
 
Posts: 17
Joined: Fri Jun 10, 2011 8:28 am

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby Xsecrets » Thu Jun 30, 2011 1:09 pm

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.
Xsecrets
 
Posts: 5042
Joined: Sat Oct 24, 2009 7:51 pm
Location: FL US

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby pierrelejohn » Thu Jun 30, 2011 2:04 pm

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

Postby sofaking » Thu Jul 07, 2011 9:39 pm

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

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

Postby mattQuest » Tue Aug 02, 2011 9:01 pm

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

Postby jprknight » Sat Aug 06, 2011 9:06 pm

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.
jprknight
 
Posts: 3
Joined: Sat Aug 06, 2011 9:03 pm

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby uksitebuilder » Wed Aug 10, 2011 8:04 am

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.
User avatar
uksitebuilder
 
Posts: 5602
Joined: Thu Jun 09, 2011 3:37 pm
Location: United Kindgom

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby jprknight » Sat Aug 13, 2011 3:03 pm

Hi,

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

Postby uksitebuilder » Sat Aug 13, 2011 3:16 pm

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
User avatar
uksitebuilder
 
Posts: 5602
Joined: Thu Jun 09, 2011 3:37 pm
Location: United Kindgom

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby jprknight » Sat Aug 13, 2011 5:55 pm

Thanks I have now installed vqmod and added the mods you mention. These work great. Thank you! ;D
jprknight
 
Posts: 3
Joined: Sat Aug 06, 2011 9:03 pm

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby Rabbitdigital » Sun Sep 11, 2011 3:20 pm

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
User avatar
Rabbitdigital
 
Posts: 18
Joined: Sun Jul 03, 2011 11:10 am

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby amcitsolutons » Sun Sep 11, 2011 7:00 pm

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

Postby emilygraham » Thu Jan 19, 2012 2:17 pm

Does anyone know what this vqmod is called - can't find it :-)
emilygraham
 
Posts: 41
Joined: Wed Sep 14, 2011 11:26 am

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby cocoamedia » Mon Jan 30, 2012 10:34 am

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.
User avatar
cocoamedia
 
Posts: 12
Joined: Tue Jun 28, 2011 5:18 pm
Location: UK

Re: Gift / Discount Vouchers - checkout NOT cart 1.5

Postby sunriser » Mon Feb 20, 2012 3:19 pm

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

Postby NotionJohn » Fri Mar 30, 2012 2:46 pm

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.
NotionJohn
 
Posts: 9
Joined: Wed Feb 15, 2012 4:09 pm

Next

Return to Feature Requests

Who is online

Users browsing this forum: No registered users and 17 guests

Hosted by Arvixe Web Hosting