Quote Originally Posted by ooakllc View Post
Thank you for your answer. I'm confused as to which button name I'm looking for. How do I find which button image the code is searching for?

To answer your suggestion: I show-- define('BUTTON_IMAGE_CONFIRM_ORDER_GREEN', 'btn_submit_order_green.gif'); in buttons_names.php and
an image named btn_submit_order_green in buttons/english

As you can see I'm very lost..
open includes/templaes/YOUR_TEMPLATE/templates/tpl_checkout_confirmation_default.php

at around line 202 you will find the following line of code:
PHP Code:
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDERBUTTON_CONFIRM_ORDER_ALT'name="btn_submit" id="btn_submit"') ;?></div>
replace that line of code with the following:
PHP Code:
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER_GREENBUTTON_CONFIRM_ORDER_ALT'name="btn_submit" id="btn_submit"') ;?></div>