Often when we use special characters in meta title like &, “â€. â„¢, > or other is shows in title like this: &, &trade, ' etc so that does not look good. To resolve those:
- Go to edit theme code > Find the seo title snippet it can in in theme.liquid or most of the times it has separate section with name: seo-title.liquid in snippets:
2- Edit that file and replace <title>{{ page_title }}</title> with the code below:
<title>{{ page_title
| replace: '&', '&'
| replace: '"', '"'
| replace: ''', "'"
| replace: ''', "'"
| replace: '<', '<'
| replace: '>', '>'
| replace: ' ', ' '
| replace: '¢', '¢'
| replace: '£', '£'
| replace: '¥', 'Â¥'
| replace: '€', '€'
| replace: '©', '(c)'
| replace: '®', '(r)'
| replace: '™', 'TM'
| replace: '°', '°'
| replace: '§', '§'
| replace: '…', '...'
| replace: '—', '--'
| replace: '–', '-'
| replace: '±', '±'
| replace: '¹', '¹'
| replace: '²', '²'
| replace: '³', '³'
}}</title>
