-
|
for example i want to change this to say my website's name. not say its a subdomain. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
It is automatically created by Google and cannot be changed, I have no idea why or when it was set to that. This has been mentioned to me before but there is no way to change it. |
Beta Was this translation helpful? Give feedback.
-
|
Even though this discussion is marked as answered, I’d like to add a potential solution for those seeking more control over their search appearance. While Google automates the site name selection, you can strongly influence it by using Structured Data (JSON-LD) via schema.org. This allows you to suggest a preferred name and alternative names. Add a script like this to the <script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "ItsMarwan",
"alternateName": [
"ItsMarwan Homepage"
],
"url": "https://marwan.is-a.dev"
}
</script>Important considerations:
I hope this helps anyone trying to clean up their branding in search results! |
Beta Was this translation helpful? Give feedback.
It is automatically created by Google and cannot be changed, I have no idea why or when it was set to that. This has been mentioned to me before but there is no way to change it.