Dynamic Meta tags?

Not sure if this is a bug or what. When I click on app and then choose Meta Description and try to add a dynamic content by clicking on the lightening bolt it says Node.js only? Is this a bug? I am using 4.4.5 experimental.

I thought I was able to create dynamic meta stuff before but wasn’t sure of exact syntax.

No, it's not a bug. The lightning bolt you are trying to use is for server data bindings, which is only available for nodejs.

For other server models you can use app connect data bindings for meta tags directly in code view.

2 Likes

gotcha thanks.

So this will work?

<meta name="description" content="{{conn_pageDetails.data.query1.SEOdescription}}">

Do I have to change the app root from page to body or something? I can’t remember how that works. If you need to use dynamic content in the head section i has to be changed?

You’re more likely to get success with

dmx-bind:content="DynamicDataGoesHere"
2 Likes