All things Shopify and commerce
Hello,
I'm creating a custom form in shopify and want to add file upload option in it. so I want to know if I can get this uploaded file into email? Also I want this form to redirect to checkout page after filling in. Is it possible to do this? Please HELP!!
Solved! Go to the solution
This is an accepted solution.
Hi,
Hope following will help
- Custom Form with File Upload you can use a third-party app or custom code for file uploads.
- Use cloud storage or a custom server to handle file uploads and send them via email.
- Redirecting to Checkout by using JavaScript
JavaScript Redirect Example:
<script>
document.getElementById('custom-form').addEventListener('submit', function(event) {
event.preventDefault();
// Handle form submission here (AJAX or other methods)
// Redirect to checkout page
window.location.href = '/checkout';
});
</script>
This is an accepted solution.
Hi,
Hope following will help
- Custom Form with File Upload you can use a third-party app or custom code for file uploads.
- Use cloud storage or a custom server to handle file uploads and send them via email.
- Redirecting to Checkout by using JavaScript
JavaScript Redirect Example:
<script>
document.getElementById('custom-form').addEventListener('submit', function(event) {
event.preventDefault();
// Handle form submission here (AJAX or other methods)
// Redirect to checkout page
window.location.href = '/checkout';
});
</script>
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025