I checked the option to pul the text from node intro if the meta desc or keywords are empty, and nothing happens, the node meta desc and keywords are empty.

Can you help please what am I doing wrong

I enabled this
Generate meta tag content when the meta tag content is empty
Generate meta tags content from the node teaser, or the node body when the node teaser is empty

The node is for ubercart product
Thank you

Comments

escoles’s picture

Seeing the same issue.

avpaderno’s picture

Status: Active » Postponed (maintainer needs more info)

Are you using Meta tags Node Type?

green monkey’s picture

same here

Turning node type 6.x-1.7 on or off does seem to matter.

with it on and putting data into node type desc still nothing appears

only desc seeing is frontpage and default keywords - does not seem to be finding terms either

let me know what else you need :)

not really sure what version to be using

on modules summary page 6.12 recommended
on module page - says 6.1.11 is recommended

green monkey’s picture

this might help

If I recall at first I loaded 6.12 then there was issues - so I did uninstall and loaded 6.1.11

its been several weeks now and a lot of site construction has gone by - so I'm a bit fuzzy on this

but I'm pretty sure that's the path I went

green monkey’s picture

updating to current dev version fixed problem (current as of this post date)

fender-dupe’s picture

ok let me try

mmlr38’s picture

Any update on this? Though I do see a dynamic description being displayed, I'm seeing the same issue with the keywords. I've tried:
nodewords-6.x-1.11.tar.gz
nodewords-6.x-1.12-beta2.tar.gz
nodewords-6.x-1.x-dev.tar.gz

And none of them seem to automatically inject the keywords into the header other than the default keywords.

EDIT: I hacked my way through the code and found where the keywords should have been getting put together to be sent to the template. In nodewords_basic/nodewords_basic.module on line 407, I made the following modificaiton:

    foreach (taxonomy_node_get_terms($node) as $term) {
// HACK TO GET TAXONOMY TERMS TO SHOW AS KEYWORDS
#      if (in_array($term->vid, variable_get('nodewords_keyword_vids', array()))) {
        $value .= ',' . $term->name;
#      }
    }

Now the taxonomy terms show. However, this is an obvious hack. I'm not sure what that if statement is checking exactly.

Anonymous’s picture

May anybody confirm this is still an issue with the latest developed code? The latest developed code uses tokens, and it doesn't automatically injects values.

Anonymous’s picture

Status: Postponed (maintainer needs more info) » Fixed

I am changing status as per my previous comment.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

keva’s picture

Version: 6.x-1.11 » 6.x-1.12-beta9
Status: Closed (fixed) » Active

I am unable to get the teaser to display as the Meta Description.

I've tried both in Description:
[metatags-description-raw]
[metatags-description]

And both in admin/content/nodewords:
Generate the token from the node teaser
Generate the token from the node teaser, or the node body when the node teaser is empty

No description Meta tag is generated.
(and the teasers for each node display just fine)

on a side note, in Keywords, this DOES work: [metatags-taxonomy-keywords]

keva’s picture

Status: Active » Closed (fixed)

arg. this patched seems to have fixed it:
http://drupal.org/node/708046

(but I'm pretty sure the above was true before I installed Meta tags Node Type)

shaundychko’s picture

The node teaser doesn't work for me either, but selecting "Generate meta tags content from the node body", at /admin/content/nodewords, instead of from Node Teaser, works fine.

avpaderno’s picture

Title: Nodewords do not automatically write the desc and keywords » Nodewords does not automatically write description and keywords