@everyone - Whether we call this problem a bug or not, the fact remains that if it is not corrected by the time 1.5.0.stable is released it will adversely affect our ability to sell merchandise using OpenCart.
Please use proper English at all times, so that all members may understand you.
-1 as being "not considered as" bug but as feature request
I'm surprised nobody defined the meaning for "feature request" as personally don't see how it could be considered a feature request if a shopper has trouble entering their "voucher code".
Maybe we should have a thread for not only "design" changes but also for "logic and shopping experience" changes. This would also allow those who want the javascript/ajax changes and such to post.
Beyond this what happens if a voucher is for "any" product compared to "single" product? This might be what is causing the issue with Daniel's decision ...
930sc ... because it is fun!
You want it somewhere else, that is a Request For Change, also known as RFC.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.

I think that a lot of shop owners are thinking that their "customers" want it there ....

930sc ... because it is fun!
also coupons and reward points need to be on the cart page because if you using google checkout or paypal express you checkout on the cart page and the discounts need to be applied before people leave the site.
OpenCart®
Project Owner & Developer.
Alternatively, as previously discussed, why not just route the checkout button through the cart? I GUARANTEE a lot of shop owners will spend way too much time answerig emails about where to enter the coupon/voucher if its left as it is as it is not intutive.
I know this can be done by indivdual shop owners but these will then break and need redoing after every update. There HAS to be a better way of doing this as it is not intuitive at all. Ask yourselves how you would do it if you were purchasing from a website? When you have added all the items to your shopping cart and are ready to checkout would you:
A:Click the Cart button
B:Click the Checkout button
getting rid of the checkout links sounds a good idea.asphole wrote:Less than 5% of my customers use google checkout. (And I run over 30 BUSY ecommerce stores) I cannot see how 1 more accordian level is going to affect the checkout page?
Alternatively, as previously discussed, why not just route the checkout button through the cart? I GUARANTEE a lot of shop owners will spend way too much time answerig emails about where to enter the coupon/voucher if its left as it is as it is not intutive.
I know this can be done by indivdual shop owners but these will then break and need redoing after every update. There HAS to be a better way of doing this as it is not intuitive at all. Ask yourselves how you would do it if you were purchasing from a website? When you have added all the items to your shopping cart and are ready to checkout would you:
A:Click the Cart button
B:Click the Checkout button
OpenCart®
Project Owner & Developer.
And probably the quickest/easiest method of keeping everybody happy.Daniel wrote:getting rid of the checkout links sounds a good idea.asphole wrote:Less than 5% of my customers use google checkout. (And I run over 30 BUSY ecommerce stores) I cannot see how 1 more accordian level is going to affect the checkout page?
Alternatively, as previously discussed, why not just route the checkout button through the cart? I GUARANTEE a lot of shop owners will spend way too much time answerig emails about where to enter the coupon/voucher if its left as it is as it is not intutive.
I know this can be done by indivdual shop owners but these will then break and need redoing after every update. There HAS to be a better way of doing this as it is not intuitive at all. Ask yourselves how you would do it if you were purchasing from a website? When you have added all the items to your shopping cart and are ready to checkout would you:
A:Click the Cart button
B:Click the Checkout button
I am happy because the OWNER PROJECT take care of this, thanks Daniel GOOOOOD JOB and please dont let us alone again.asphole wrote:And probably the quickest/easiest method of keeping everybody happy.Daniel wrote:getting rid of the checkout links sounds a good idea.asphole wrote:Less than 5% of my customers use google checkout. (And I run over 30 BUSY ecommerce stores) I cannot see how 1 more accordian level is going to affect the checkout page?
Alternatively, as previously discussed, why not just route the checkout button through the cart? I GUARANTEE a lot of shop owners will spend way too much time answerig emails about where to enter the coupon/voucher if its left as it is as it is not intutive.
I know this can be done by indivdual shop owners but these will then break and need redoing after every update. There HAS to be a better way of doing this as it is not intuitive at all. Ask yourselves how you would do it if you were purchasing from a website? When you have added all the items to your shopping cart and are ready to checkout would you:
A:Click the Cart button
B:Click the Checkout button
Celestial - Martín Abel Rosales
WhatsApp: 50671482211
Email: martinrosales2012@hotmail.com
Skype: martin.abel.rosales
San José , Costa Rica
Im new to opencart, and used the demo on site, I can't even find how to put in a coupon - where is it - cart - checkout - finish

I have installed on my server and still can't find it.
so I need something special to use it ?
OMG Thank you aturbide! You actually provided an actual working answer to the problem! Under common/cart.tpl I replaced:aturbide wrote:Perhaps for those that need it, a simple change can be done to link the ajax cart checkout button to checkout/cart instead of checkout/checkout and thus give the users the option to enter their codes and checkout after. It only gives an extra click. This of course would entail the removal of the checkout menu option in the header and keeping only the shopping cart menu item (perhaps renaming it to checkout instead). This would force all checkouts to go via the cart first. All this can be done at the cart.tpl template by doing a replace on the checkout link and the removal/change of the checkout link in the header template. Of course, the checkout/checkout link in the ajax cart in the header can be also changed in common.js
Code: Select all
<div class="checkout"><a href="<?php echo $checkout; ?>" class="button"><span><?php echo $button_checkout; ?></span></a></div>
Code: Select all
<div class="checkout"><a href="index.php?route=checkout/cart" class="button"><span>Continue</span></a></div>
I'm not sure if you still need this questioned answered, but the "apply discounts" menu appears in shopping cart when you have an item in your cart.pierrelejohn wrote:didn't notice this when i posted in the bug thread
Im new to opencart, and used the demo on site, I can't even find how to put in a coupon - where is it - cart - checkout - finish
I have installed on my server and still can't find it.
so I need something special to use it ?
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>
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>
Just a though....
Cheers,
Michael
I believe that this is/was the plansofaking wrote:For the coupon fix:-
Could you not just change the Checkout link to actually just take people to the Cart page?

Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I am following this thread for the same issue but now I am running 1.5.1.3. I like the fix posted by sofaking and that works fine except for the Checkout link in the drop down shopping cart box. This still goes to the checkout page. Can someone suggest a fix for that also please?
robster
I know my place...!
When i go to my webshop (Screenshot) and i press on the Green Button.. It still goes to the Checkout, So people can not put a Vouchercode? Is there a way to fix that too, to always go first to the cart?
so that it goes to checkout/cart ?

Users browsing this forum: No registered users and 14 guests