Move update button?

Can we move the update button on the order info page so that when we change the order status we don’t have to scroll to the bottom of the page?

[quote name=‘taylorsnutriton’]Can we move the update button on the order info page so that when we change the order status we don’t have to scroll to the bottom of the page?[/QUOTE]

In skins/your_skin/admin/order_pages/Order_details.tpl

after:

{if ‘edit_order’|fn_check_privileges:true}



{include file=“buttons/button.tpl” but_text=$lang.edit_order but_href=“$index_script?$target_name=order_management&$mode_name=edit&order_id=$order_info.order_id”}


{/if}





add:

{if ‘change_order_status’|fn_check_privileges:true}


{include file="buttons/button.tpl" but_text=$lang.update but_onclick="javascript:document.order_info_form.submit();"}

{/if}