paulmassen / grav-plugin-seo

Manage your site’s meta tags for display in search engine results or social media networks. Create and manage json-ld microdata. Includes an easy-to-use live preview feature.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Google Analytics Title not updating

slarcher opened this issue · comments

Hi,
I am using plugin version v2.3.5 and Grav CMS version 1.6.26 and Admin version 1.9.15.
I installed the plugin and noticed when I change the Google meta description under the SEO tab it works - it's populated in the source code. However, the title override does not seem to be happening to me.

I checked this behaviour on another Grav site I developed and it's not up-to-date with the Grav system and SEO plugin and the above actually works.

So it seems to me some kind of incompatibility on the latest versions?

Can you check and confirm?

NB: I tested this on 'normal' pages and modular pages. However, just wanted to check with you the SEO plugin should also work with modular pages right?

Thanks
Sam

Hi,
Any answer at all? Is this plugin still being maintained?
I add a screenshot.
Screen Shot 2020-07-27 at 11 16 37 am

OK - I had to use the following in base.html.twig to make it work:

<title>{% if page.header.googletitle is defined and not empty %}{{ page.header.googletitle}}{% else %}{{ page.title }} | {{ site.title }}{% endif %}</title>