Reputation: 27
If I search for our website www.captaincookresorts.com on google, first result has correct title corresponding homepage title, but description below is total nonsense.
It's part of one language select's option. There are all informations like meta description, keywords, schema.org tags ..., but google chose this. Can anybody enlighten me why?
Upvotes: 0
Views: 78
Reputation: 96697
Your option
elements look like:
<option value="it"><span class="lang-row sys-disablePropragation" rel="http://it.captaincookresorts.com" onclick="window.location=jQuery(this).attr('rel');" title="Italiano"><span class="langcode">IT</span><span class="ico-flag flag-it"></span></span></option>
Instead, you probably want something like:
<option value="it">Italiano</option>
The content model of option
elements is "Text", so they can’t contain HTML/JavaScript.
Upvotes: 0