Comments

Dave Reid’s picture

Status: Active » Postponed (maintainer needs more info)

Can you provide an export of your site's meta tag configuration for user pages? Anything custom or modules related to users that might be interfering (aka can you reproduce with a clean install of just core + metatag)? Are you using any other modules like Page titles?

MGParisi’s picture

$config = new stdClass();
$config->disabled = FALSE; /* Edit this to true to make a default config disabled initially */
$config->api_version = 1;
$config->cid = '6';
$config->instance = 'user';
$config->config = array(
  'title' => array(
    'value' => '[user:name] Profile - [site:name]',
  ),
  'copyright' => array(
    'value' => '[current-date:custom:\'YYYY\']',
  ),
  'canonical' => array(
    'value' => '',
  ),
  'og:title' => array(
    'value' => '[user:name]',
  ),
  'og:type' => array(
    'value' => 'profile',
  ),
  'og:image' => array(
    'value' => '[user:picture:url]',
  ),
);

The "Profile" doesn't even display. I wonder if I should uninstall then re-install as I have been using this module for a long time (and a few upgrades).

Dave Reid’s picture

That sounds like something else is overriding the page title set by metatags.

MGParisi’s picture

I uninstalled it and installed the beta (i might have been running the dev version). It works now and I have to transfer it to the production site.

MGParisi’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

Fixed, thanks for the help David