View Full Version : Checkout Continue button goes nowhere
whitewolfspirits
10-07-06, 05:14 AM
I have read so many of the posts about the checkout button, but I still can't get mine to do anything. Most of the posts state that it takes them back to the storefront. Mine doesn't budge. LOL. I rolled back to the original items, but still I can't get past that screen. I actually completed a "test" order a little while back, so I know it is something I have changed. I am at a loss. Any suggestions would be greatly appreciated.
http://whitewolfspirits.com/store/merchant.mvc
Pete McNamara
10-07-06, 09:37 AM
Your Checkout button works fine for me and there is no Continue Shopping button in the Basket page, that I can see..
whitewolfspirits
10-07-06, 10:47 AM
You don't see a "continue" on this page? I didn't put the link to the page I am having trouble with, so perhaps I didn't state my problem right. On this page, the "continue" button (at the bottom of the page) doesn't do anything. And I am still working on the link for the login, but if you have any suggestions, I am all ears. Well...not ALL ears, but I would like suggestions if you can.
Do you see any reason why the "continue" button is dead?
http://whitewolfspirits.com/store/merchant.mvc?Screen=OINF&Store_Code=WWS
Thanks
White Wolf
Vic - WolfPaw Computers
10-07-06, 05:13 PM
Yes.
You have multiple form posts going on, most of them wrong.
For instance this one should be for your login:
<form method="POST" action="http://whitewolfspirits.com/store/merchant.mvc?">
<input type="hidden" name="Action" value="ORDR,SHIP,CTAX,AUTH">
<input type="hidden" name="Screen" value="INVC">
<input type="hidden" name="Store_Code" value="WWS">
But its not...looks like its supposed to skip shipping and payment and go right to the INVC...thats not going to work.
then later, you have this one that shoud be adjusting the basket quantity:
<form method="post" action="../http://whitewolfspirits.com/store/merchant.mvc?">
<input type="hidden" name="Screen" value="BASK">
<input type="hidden" name="Action" value="RPRD">
<input type="hidden" name="Store_Code" value="WWS">
<input type="hidden" name="Basket_Line" value="57">
That one will remove a product but return the customer to the BASK screen...IF the URL was correct which it's not.
then a third, which should be the OINF information:
<form method="post" action="../http://whitewolfspirits.com/store/merchant.mvc?">
<input type="hidden" name="Screen" value="BASK">
<input type="hidden" name="Action" value="QNTY">
<input type="hidden" name="Store_Code" value="WWS">
<input type="hidden" name="Basket_Line" value="57">
Where you have the customer returning to the BASK screen, the action is QNTY, which does not seem right. I would think it would be ADRP and there is no quantity of the product being passed, and the URL is wrong.
You have 2 different </form> tags, there should be 3.
And as I mentioned, the URL to several links is malformed as:
../http://whitewolfspirits.com/store/merchant.mvc?
I would suggest reverting back to the original template and starting again.
whitewolfspirits
10-07-06, 06:04 PM
I made a BIG mistake and popped the code into Front Page to see what it would look like. It added junk that I didn't see until it was already changed. I am an "old time" coder. LOL. And, a very newbie to MIVA. I appreciate all the help and time you people give. Will start over. Thanks again.
White Wolf
vBulletin® v3.7.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.