Zuncan Posted July 22, 2005 Share Posted July 22, 2005 Hi! What files do I have to add code to to be able to add more buttons to my shop? I mean buttons like "button_continue.gif" or "button_checkout.gif". Greatful for help / Zuncan So what?! Who care in a hundred years anyway? Link to comment Share on other sites More sharing options...
hubcat Posted July 22, 2005 Share Posted July 22, 2005 Well, it depends on where you want the buttons to show up... Can you be more specific? Adrienne Link to comment Share on other sites More sharing options...
Zuncan Posted July 22, 2005 Author Share Posted July 22, 2005 I want to replace the button in password_forgotten.php. As it is know the customers enters the email and then press "Continue". Kinda logic, but I want it to say something like "Retrive new password". So I want to add a button to catalog/includes/languages/english/images/buttons/ This way I can change the image that is showing in this code: <?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?> to <?php echo tep_image_submit('button_newpassword.gif', IMAGE_BUTTON_NEWPASSWORD); ?> So what?! Who care in a hundred years anyway? Link to comment Share on other sites More sharing options...
hubcat Posted July 22, 2005 Share Posted July 22, 2005 It sounds like all you want to do is change what's on the button, but not what it does, right? You still want the button to continue them onto the next page. So, do this <?php echo tep_image_submit('button_newpassword.gif', IMAGE_BUTTON_CONTINUE); ?> That will keep the logic of the continue button, but show the graphic of the new one. Of course, you then need to make a new button image named button_newpassword.gif and upload it to the proper directory. That should do it. Adrienne Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.