After completing an order using a Shopify order form, the customer will be redirected to a Shopify thank you page instead of being redirected to a TMF thank you page.
To redirect customer's back to a 10MF page, here are some suggestions:
1. Add a button on the Shopify thank you page that will redirect to a 10MF thank you page when clicked
In Shopify, go to Settings > Checkout > Additional Scripts then place the code for the button
Here's a sample code:
<head>
<br></br>
<form>
<input style="width: 300px; padding: 20px; box-shaddow: 6px 6px 5px; #999999; -webkit-box-shadow: 6px 6px 5px #999999; -moz-box-shadow: 6px 6px 5px #999999; font-weight: bold; background: #FFFF00; color: #000000; cursor: pointer; border-radius: 10px; border: 1px solid #D9D9D9; font-size: 150%;" type="button" value="Put Your Text Here" onclick="window.location.href='YOUR URL HERE'" />
</form>
</head>
Put Your Text Here = the text that appears on the button
YOUR URL HERE = the url of where you want your customers be redirected after they click the button
2. The 10MF Thank You Page will open in another window
In Shopify go to Settings > Checkout > Additional Scripts
Place this code
<script type="text/javascript">
window.open(‘YOUR URL HERE','_blank');
</script>
YOUR URL HERE = the url of where you want your customers be redirected after they click the button
3. Set up a delayed 10MF thank you page
The 10MF thank you page will appear after a few seconds of viewing the Shopify thank you page.
On Shopify, go to Settings > Checkout > Additional Scripts then place the code for the delay
Here's the code:
<script type="text/javascript">
setTimeout(function(){
window.location = “YOUR URL HERE";
}, 3000);
YOUR URL HERE = the url of where you want your customers be redirected after they click the button
3000 is milliseconds, change it depending on how long you want the delay
For now that is the available workaround. Showing the order details in the 10MF Thank You Page is something our platform cannot do at this time.
Comments