top of page
Utility
Tools
Velo Code - Set SEO Title for Page
Image Showing the Title Added By The Velo Code

This code is useful when you want to set a different SEO Title for your Pages than the Name of the page. Very Good For SEO.
The Code uses Wix SEO Frontend Module :
CODE
import wixSeoFrontend from 'wix-seo-frontend';
$w.onReady(() => {
wixSeoFrontend.setTitle("New Title")
.then(() => {
console.log("Title set successfully");
})
.catch(() => {
console.log("Failed to set title");
});
});
bottom of page