Quote Originally Posted by frank18 View Post
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_SMALLBUTTON_EDIT_SMALL_ALT) . '</a>'?></div>
        <h4 id="checkoutConfirmDefaultShipmentTitle"><?php echo $order->info['shipping_method']; ?></h4>
<?php
        
}
?>
Cheers / Frank
Quote Originally Posted by lat9 View Post
Thanks, @frank18, I'll look to get this into the next release ... with a caveat:

There are payment modules that replace the shipping-address link during the "normal" checkout_confirmation processing. I'll look to more mimic the full checkout_confirmation page on the OPC confirmation one.
@frank18 ... OK, color me confused!

That "Edit" button shows in both the checkout_one_confirmation and ajax_checkout_confirmation pages and the plugin doesn't distribute the file /includes/templates/YOUR_TEMPLATE/tpl_checkout_one_confirmation_default.php.

From what I can see, reviewing the GitHub changes, that button was added back in August of 2016; perhaps you've made a template-override version that (somehow) got down-level?

Please advise.