
Originally Posted by
lat9
I've got a couple of updates available on the plugin's
github repository, specifically to address the two issues that @frank18 identified:
- Missing T&C block; if enabled, it's now displayed just above the submit button.
- Support for eWay payment method, which seems to do a bit of a one-off in its handling of the process_button function.
These will be included in a forth-coming v1.0.1 release of the plugin.
The latest github download works a treat for me, especially for a payment module like eWay.
Made some tweaks such as pre-selecting eWay as payment method and added a few bits and pieces which are only relevant for one of my stores. All good!
But found another little 'boo-boo':
In the file includes/templates/template_default/templates/tpl_checkout_one_confirmation_default.php the $editShippingButtonLink takes me back to the home page instead to the address book for editing the shipping address in the order.
It looks like that $editShippingButtonLink does not carry from the previous page.
So in the file includes/modules/pages/checkout_one_confirmation/header_php.php below line 95 I added
Code:
$editShippingButtonLink = zen_href_link (FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL');
and that did the trick for me.