- This topic has 1 reply, 2 voices, and was last updated 10 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore – Manual checkout > confirm order button customization
Tagged: confirm order
Is there any possibilty to change the “confirm order” button on the page with the customer’s details (first name, etc.)? I would like to integrate an image-button. Thank for advice.
<button type=”submit” name=”confirm”>Bestellung bestätigen</button>
Open the “eStore_manual_gateway_functions.php” file and look for the following line of code:
<button type="submit" name="confirm"><?php echo ESTORE_CONFIRM_ORDER; ?></button>
Once you find it, change it to the following:
<input type="image" src="your-custom-button-image-url" alt="Confirm Order" />
That should do it.