I wish there was a way to change the favicon for only certain pages. I also was hoping that there would be a way to edit the section not for the entire website like now, but changeable for different pages.
You can do that todau with routers. So if you set up a router to respond to /articles/ and then under that you have let’s say a data collection where you have articles.
Then in the router you can alter the head information.
export function myRouter_Router(request) { let headOptions = { "title": "A page title", "description": "A page description", "keywords": "wix code example", "noIndex": true, "metaTags": { "copyright": "Wix.com", "Classification": "Example", "og:title": "The Rock", "og:image": "http://ia.media-imdb.com/rock.jpg" } }; let response.head = headOptions; }
i didnt udertand do you have a vide for exaple please?