to fix this, in "function nodewords_ui_user"

i changed this:

if ($bool) {
    $form['nodewords'] = nodewords_tags_edit_fields(
      array('type' => NODEWORDS_TYPE_USER, 'id' => $account->uid),
      isset($account->nodewords['metatags']) ? $account->nodewords['metatags'] : array()
    );

    return $form;
  }

to this:

if ($bool) {
    $form['nodewords'] = nodewords_tags_edit_fields(
      array('type' => NODEWORDS_TYPE_USER, 'id' => $account->uid),
      isset($account->nodewords['metatags']) ? $account->nodewords['metatags'] : array(),
      array(
        'fieldset' => TRUE,
        'tag options' => array('content type' => $form['type']['#value']),
      )
    );

Comments

Anonymous’s picture

Title: Meta Tags Fieldset missing when editing user account » Meta tags fieldset is missing when editing user account
Anonymous’s picture

Status: Closed (fixed) » Fixed

I changed the code as per patch, with the exception that the index 'tag options' is not used for the user profile meta tags (the content type doesn't have any meaning for a user profile). Thanks for your report.

Status: Active » Closed (fixed)

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

Status: Fixed » Closed (fixed)

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