skip to Main Content

I’m using MODX Revolution 2.5.7 version for my site.

But unable to update the Meta tags. I searched a YouTube video & follow their given steps But still no success.

I have attached below 2 snaps..

1st for updating the Meta tags & second is published page after saving the metas.

Picture of Dashboard while updating the Meta tags:

Picture of Dashboard while updating the Meta tags

Picture after updating the Meta Tags:

Picture after updating the Meta Tags

2

Answers


  1. It seems as you have confused template tags in your html. It should be

    <meta name="description" content="[[*description]]"/>
    

    And you are likely to have:

    <meta name="description" content="[[*longtitle]]"/>
    

    that’s why you see long title where description should go.

    Login or Signup to reply.
  2. it looks to me like your cache needs to be cleared. (both browser & modx) – if you are using a CDN (i.e. cloudflare) or other caching service – clear that too.

    your tags should look like:

    <meta name="description" content="[[*description]]"/>
    
    <meta name="keywords" content="[[*introtext]]"/>
    

    …for the setup you are using.

    You could also setup a template variable for the keywords (or any other meta information) and out put it like this:

    <meta name="keywords" content="[[*keywords]]"/>

    (assuming you named the variable “keywords”)

    There are also quite a few SEO/Meta extras available for modx ~ just search the extras directory.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search