SEO - how to get a search bar at google?

Hey,

This is the content you see at google when you search at my site (I know you might not understand the text):

48

This is how it look if you e.g search at “Lægeforeningen”.

How to change the layout at google to e.g include a search bar for my site and nice layout then the “random” text at the moment?

I dont know anything about SEO :smiley: Are there anything I can do ?

4 Likes

For search box you may need to add some code inside <head> tag as suggested here Sitelinks Searchbox  |  Search  |  Google Developers. And I think site links need to be configured via Google Webmaster tools.

4 Likes

The URL of a search in discourse has the following format:

https://your.domain.tld/search?q=test

So I think if you added this to the body of a theme component (the only thing you have to change is your.domain.tld):

<script type="application/ld+json">
{
   "@context": "http://schema.org",
   "@type": "WebSite",
   "url": "https://your.domain.tld/",
   "potentialAction": {
     "@type": "SearchAction",
     "target": "https://your.domain.tld/search?q={search_term_string}",
     "query-input": "required name=search_term_string"
   }
}
</script>

It could eventually work, bear in mind, that in the end only google is deciding if this will show or not, so you could add this code and it would do nothing.

10 Likes

@sam we might want consider doing this by default what do you think ?

7 Likes

I think it’s in body, do you see somewhere it’s saying <head> ?

this would be pretty badass if it was on by default…

Yes it can be placed in body. Pinterest also placed it in body only.

1 Like

It definitely sounds like a pretty cool feature for public sites, but I’d just like to caution that it would look weird on private ones. My preference would be to have it off by default, or have the ability to turn it off for private sites.

9 Likes

Now I did try to to add that snippet.

We will see if google eat it and it will add a search bar

Any way thanks for the help!

4 Likes

I kind of like it, @codinghorror what do you think?

4 Likes

AFAICT, the sitelinks generally display in the SERPs when the search terms are more “general”.

For example a search for “Discourse meta” shows sitelinks. But a search for “discourse seo search bar google” will not have them under the link to this topic, nor under the same Discourse meta link after it that had them for the more general search.

Kind of like “give me the table of contents” vs “give me this page”

1 Like

I dunno we already have this

<link rel="search" type="application/opensearchdescription+xml" href="https://meta.discourse.org/opensearch.xml" title="Discourse Meta Search">

Are people really going to be searching for the name of the site? That seems like a rare edge condition to me, not something we want to add permanent markup for.

5 Likes

Yes, people do this all the time. They do it because they don’t know what a URL is or how to create a bookmark – it’s simply their way to open any website.

This is somewhat sad, but surprisingly true :sadpanda:

15 Likes

I think this is a really good addition and unique point of difference. It highlights the site in search results, it stands more a chance of being used than being absent considering seems like a trivial update to make.

1 Like

Have anyone tried this and got results? :slight_smile:

I’d like to see something like this for Bing, Yahoo, and DuckDuckGo. :slightly_smiling_face:

I was looking into this and came across Google’s Rich Results Test (https://search.google.com/test/rich-results). I noticed by putting a few discourse URLs through the tester they all seemed to have the results mentions in Joffrey’s response above.

YMMV but I figured I would share my findings

2 Likes