Back to SEO Extension Support

ch.wuerzer7576
ch.wuerzer7576

Is there a way to use this Plugin in Multilingual way ?

Exemple on home.htm

How can we put a multilingual SEO on one static page ?

frank.castillo8395
frank.castillo8395

I ended up creating a partial of my own that I can use in conjunction with the Translate plugin like this:

<title>Web Page Title | {{ this.page.title }}</title>
<meta name="description" content="{{ this.page.settings.meta_description|_ }}">
<meta name="keywords" content="{{ this.page.settings.seo_keywords|_ }}">
<link rel="canonical" href="{{ this.page.url }}"/>
<meta name="robots" content=",">
<meta property="og:title" content="Web Page Title - {{ this.page.title }}" />
<meta property="og:url" content="{{ this.page.url }}" />
<meta property="og:site_name" content="Web Page Title" />
<meta property="og:description" content="{{ this.page.settings.meta_description|_ }}" />
<meta property="fb:app_id" content="1234....999" />

Then I just add the SEO extension plugin to the default layout but use my own partial instead of the component it comes with. The text will show up in the Translate Messages section of the Settings page where you can translate the meta tags.

1-2 of 2