I need help with change somethink on one of page i my zencart. I would like to move button "checkout confirmation" from bottom of page to top of page (checkout Step 3). Where can i find it and what i need to change.
I need help with change somethink on one of page i my zencart. I would like to move button "checkout confirmation" from bottom of page to top of page (checkout Step 3). Where can i find it and what i need to change.
I guess you should modify your:
includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default.php
This code needs to be dropped somewhere at the top (wherever you want it)
line 180:
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
</form>
<div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>
</div>
almost.
button is on top but it doesn't work,
maybe i need to put it somewhere between some tags