I'm not sure if this is a bug or a feature request. When I set a custom (meta tag) page title on a node, the og:title doesn't also change (and there is no way to manually change it.)

Is this the expected behavior or am I missing something?

Comments

FrancescoUK’s picture

I had an issue but it's due to the fact that child tags are not inheriting override global changes.
You need to override each tag group

Vietyank’s picture

Version: 7.x-1.0-alpha3 » 7.x-1.0-alpha5
StatusFileSize
new21.46 KB
new113.43 KB

I have overridden the value for og:title in global, global:front page and node to use the site:slogan. It continues to insert the site title into the <head> section. If I look at the values in the export, it appears correctly but not in the page header.

$config = new stdClass();
$config->disabled = FALSE; /* Edit this to true to make a default config disabled initially */
$config->api_version = 1;
$config->cid = '4';
$config->instance = 'global:frontpage';
$config->config = array(
  'title' => array(
    'value' => '[site:name] | [site:slogan]',
  ),
  'canonical' => array(
    'value' => '[site:url]',
  ),
  'og:title' => array(
    'value' => '[site:slogan]',
  ),
  'og:type' => array(
    'value' => 'website',
  ),
  'og:image' => array(
    'value' => 'http://www.democratsabroad.org/sites/default/files/images/Vote_from_abroad.jpg',
  ),
  'og:url' => array(
    'value' => '[site:url]',
  ),
  'og:description' => array(
    'value' => 'Check out the newly revamped VotefromAbroad.Org ready for mobiles,  tablets, and US citizens wherever they live around the globe !',
  ),
);

Vietyank’s picture

Priority: Normal » Major
Vietyank’s picture

Status: Active » Fixed

I installed alpha6 and the problem seems to have been solved

Status: Fixed » Closed (fixed)

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