I have much of (grupped by vocabulary term) nodes, that CCK field displayed by the views, i need put to meta tags all patch to choosen term of vocabulary (like breadcrumbs).
What i try do:
1.Install Integrated Metatags module.
2.Go to /admin/content/node-type/MY NODE TYPE/metatags
3.Switchin all of 3 checkboxes
4.Put in field "Manual/Static Metatag entry:" text "12345|[menupath]
5.Save
6.Go on any page that make Views, for example
7.Look to page source code and see

why content is empty?

Comments

temp’s picture

Assigned: Unassigned » temp

sorry forgot code tags
7.Look to page source code and see
<meta name="12345" content="" />
why content is empty?

for make menu based taxonomy i use taxonomy_menu module

fractile81’s picture

Assigned: temp » Unassigned

Looks like when you saved, some of the HTML was removed.

I noticed that you have &lt;meta name="blah" content="" /&gt; in your page right now. If you're defining this through a Manual/Static Metatag and are using a Token, are you sure the Token is available?

temp’s picture

Assigned: temp » Unassigned

Thanks for quick reply
Yes - Token is available - for example i change "12345" to [type] and now this showing
<meta name="tovar" content="" />
"tovar" is my content type

fractile81’s picture

You're sure that the [menupath] token is in the "Available Tokens" fieldset? I'll have to wait until later tonight to really dig into this, but I just want to cover the basics before I look any harder at this.

temp’s picture

Yes - i have row
[menupath] - The menu path (as reflected in the breadcrumb), not including Home or [menu]. Separated by /.
in dropdown "Available Tokens" list

fractile81’s picture

Status: Active » Closed (fixed)

This appears to be a bug in the Token module. Here's a link with the problem/solution: http://drupal.org/node/226074#comment-1285148

You can try using the DEV release of Token to see if that works for you (it's not fixed in v1.11). Closing this since it's not a problem with Integrated Metatags, and since it's technically a duplicate (as far as I can tell).

ambrojio’s picture

Status: Closed (fixed) » Active

Sorry to reopen, but this seems to be the topic for questions related to Views, and I'm not having a problem in particular with Tokens.

I can't get any meta tag information at ALL on pages utilizing a View; for instance, http://numericanrevolution.com/events. This page is a simple View using fields (tho I also have Views using nodes that also do not work), with a header and title created in Views.

I have set both global meta information and meta information for the "event" content type, and set the "event" content type to inherit tags, display in teaser mode, and display empty tags. When viewing an Event as a node, everything works great and fine. However, when viewing the above Views page, I don't even get empty meta tags. They just don't exist.

Am I missing something in the configuration, or is this a limitation of the module?

fractile81’s picture

Status: Active » Closed (fixed)

Rather than re-opening a closed ticket, feel free to create your own. If another ticket is close to what your problem is, but not exact, feel free to reference it in the new ticket you create.

As for your problem, this module can only show metatags when you render a node, either on it's page or as a teaser. To work with Views, you HAVE to have your Row Style in the Display set to "Node" (note that not all Styles support a Node Row Style).

Following the link you provided, it looks like you're rendering each row as fields. You mentioned having a View that uses nodes; if you can provide a link for that, I can look at that one too. But if that View/Display doesn't have the Row Style set to Node, it's not going to work.

Hope that helps some!