[solved] Orders - Confirm order just showing back button
Posted: Tue May 01, 2012 12:15 pm
Hello,
CGEcommerceBase 1.3.9
CGExtensions 1.28.2
Cart 1.8.2
Orders 1.13.2
Products 2.17
I have an issue related to the order step, to review and confirm the placed order.
On the bottom, there should be the payment methods to show up, if you have any configured (seen in template) but no other link is shown, except "back", and no link, to confirm the order.
Is it possible to add just a confirmation button, that sets the order to confirmed, and leads to the next page (invoice?).
Or do I need to set up a payment gateway and shipping, even if I use none and have fixed shipping fees?
Any help would be really appreciated.
Yours Jens
EDIT 7:30pm:
After hours of inspecting and reviewing the code, I found the solution. So for all of you having the same issue:
In the default template code, there are missing the following lines:
I found it in the "original" template file named orig_confirmorder_template.tpl
So maybe a bug?
Yours Jens
CGEcommerceBase 1.3.9
CGExtensions 1.28.2
Cart 1.8.2
Orders 1.13.2
Products 2.17
I have an issue related to the order step, to review and confirm the placed order.
On the bottom, there should be the payment methods to show up, if you have any configured (seen in template) but no other link is shown, except "back", and no link, to confirm the order.
Is it possible to add just a confirmation button, that sets the order to confirmed, and leads to the next page (invoice?).
Or do I need to set up a payment gateway and shipping, even if I use none and have fixed shipping fees?
Any help would be really appreciated.
Yours Jens
EDIT 7:30pm:
After hours of inspecting and reviewing the code, I found the solution. So for all of you having the same issue:
In the default template code, there are missing the following lines:
Code: Select all
{if isset($ccformstart)}
{$ccformstart}
{$Orders->Lang('procede_manual_checkout')}: <input type="submit" name="{$actionid}submit" value="{$Orders->Lang('next')}" />
{$ccformend}
{/if}
So maybe a bug?
Yours Jens