#Search issue

1 messages · Page 1 of 1 (latest)

exotic igloo
#

Why does my Next.js website show "0xhoneyjar" at the top and my actual domain below when I search for it on the web?

vast shadowBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

exotic igloo
turbid sentinel
#

<meta property="og:site_name" content="Dialedweb">
@exotic igloo

#

not sure where Oxhoneyjar came from

exotic igloo
#

export const metadata = {
title:
}

proud mason
#

@exotic igloo

Hey, I'm not quite sure why this is showing under your site title, but I have a theory. It may be because "0xhoneyjar.xyz" used to be connected to your website or has the same hosting/IP address. This may lead Google to incorrectly associate them with each other.

One possible solution would be to include the siteName attribute in your Open Graph (OG) tags. This should then make the correct association clear for Google.

Please let me know if that is helpful or if you need any additional help!

turbid sentinel
#

normal meta info is how i sent

#

what you want is the nextjs version

proud mason
#

Hi @turbid sentinel, it seems that we both came up with the same solution! He is probably running an app-based router, so we will have to include the siteName attribute in the OG tags. It will look something similar to this,

export const metadata = {
title,
openGraph: {
siteName:
}
}

exotic igloo
#

Okay, I will try to see if that helps