Most Shopify shops probably don’t have to worry about large numbers of redirects on a daily basis but one thing I’ve come up against working with Clemsons Vintage is managing redirects.
Most sites might need to add redirects once every so often, for example, if you update a blog URL or tweak the site structure but with Clemsons Vintage I’m working with redirects on a near-daily basis. This is due to the fact that everything sold on the site is a 1 of 1 item and therefore once it’s sold the product is marked as a draft and the URL then returns a 404, which isn’t ideal from a UX standpoint as these URLs will still be in the search results for a while. From an SEO standpoint, most of these URLs have little value but I like to follow best practice, until it starts to get unmanageable. This is what’s led look to look into automating Shopify redirects.
I had a quick look to see if there was already an app to do this but I couldn’t spot anything so decided to create my own private app with some help from ChatGPT.
The following instructions will help you create your own Shopify app that uses Google Cloud functions to create a redirect to a collection page. In the code shown this redirects users to a collection page of the same product type but you could tweak this to go to the same brand instead. Google Cloud Functions has a free tier that should cover the needs of this app but I would recommend keeping an eye on your billing and setting up notifications so you don’t end up with a large, unexpected bill at the end of the month.
This guide will help you set up a Google Cloud Function to automatically create redirects for draft products to their respective category pages on Shopify.
Google Cloud Function App
) and enter an emergency developer email.handleWebhook
).SHOPIFY_STORE
: Your Shopify store name (e.g., my-store-name
). I used the default URL when managing the backend of the store, this should look something like: https://admin.shopify.com/store/{your store code}/products?selectedView=allSHOPIFY_ACCESS_TOKEN
: Your Shopify access token (the password from your private app).Node.js 20
.handleWebhook
.index.js
file and replace it with the code belowpackage.json
file and replace it with the following updated code: Product update
.JSON
.index.js
codeconst axios = require('axios');
// Mapping of product types to collection URLs
const productTypeToCollectionUrl = {
'Football Shirt': '/collections/football-shirts',
'Bag': '/collections/bags',
'Fleece': '/collections/fleeces',
'Gilet': '/collections/gilets',
'Hat': '/collections/vintage-hats-caps',
'Hoodie': '/collections/hoodies',
'Jacket': '/collections/jackets',
'Rugby Shirt': '/collections/rugby-tops',
'Shirt': '/collections/shirts',
'Shoes': '/collections/shoes',
'Shorts': '/collections/shorts',
'Sweatshirt': '/collections/sweatshirts',
'T-Shirt': '/collections/t-shirts',
'Trackies': '/collections/trackies',
'Trousers': '/collections/trousers',
// Add other mappings as needed
};
exports.handleWebhook = async (req, res) => {
const product = req.body;
if (product.status === 'draft') {
const productType = product.product_type;
const categoryUrl = productTypeToCollectionUrl[productType] || '/collections/default-collection'; // Default collection if no mapping found
const redirect = {
redirect: {
path: `/products/${product.handle}`,
target: categoryUrl
}
};
try {
await axios.post(`https://${process.env.SHOPIFY_STORE}.myshopify.com/admin/api/2022-01/redirects.json`, redirect, {
headers: {
'X-Shopify-Access-Token': process.env.SHOPIFY_ACCESS_TOKEN
}
});
res.sendStatus(200);
} catch (error) {
console.error('Error creating redirect:', error);
res.sendStatus(500);
}
} else {
res.sendStatus(200);
}
};
Package.json
Code{
"name": "shopify-webhook-function",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"axios": "^0.21.1"
}
}
By following these steps and using the code with the product type to collection URL mapping, your redirects should now correctly point to the appropriate collection URLs. Adjust the productTypeToCollectionUrl
dictionary to match your specific product types and collection URLs.
I hope you found this useful and that it pretty much works first time but if you run into any issues just drop me a message on my contact form and I’ll do my best to help you get it working!