
Originally Posted by
frank18
Had a customer complaining that they could not change the selected shipping method after getting to index.php?main_page=checkout_one_confirmation.
In a round-about way it is possible to change the shipping method (I know that... ) but a first time customer may be looking for an 'Edit' button next to "Shipping Method:" which ofc does not exist.
Any chance to get that done in the next updated version please? An 'Edit' button just needs to redirect back to the index.php?main_page=checkout_one page.
Cheers / Frank
Meanwhile, in includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_one_confirmation_default.php I changed this part
PHP Code:
<?php
if ($order->info['shipping_method']) {
?>
<h3 id="checkoutConfirmDefaultShipment"><?php echo HEADING_SHIPPING_METHOD; ?></h3>
<h4 id="checkoutConfirmDefaultShipmentTitle"><?php echo $order->info['shipping_method']; ?></h4>
<?php
}
?>
to this
PHP Code:
<?php
if ($order->info['shipping_method']) {
?>
<h3 id="checkoutConfirmDefaultShipment"><?php echo HEADING_SHIPPING_METHOD; ?></h3>
<div class="buttonRow forward"><?php echo '<a href="' . zen_href_link (FILENAME_CHECKOUT_ONE, '', 'SSL') . '">' . zen_image_button (BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
<h4 id="checkoutConfirmDefaultShipmentTitle"><?php echo $order->info['shipping_method']; ?></h4>
<?php
}
?>
Cheers / Frank
Bookmarks