Так понимаю, что стоит компонент OpenGraph?или может есть желающие подсказать или помочь?
Не знаю как там конкретно для групп устроено.
Но как вариант можно в main.tpl.php перед </head> прописать в ручную разметку по умолчанию так:
<meta property="og:type" content="website" /> <meta property="og:url" content= "<?php echo $config->host . $core->uri_absolute; ?>" /> <meta property="og:title" content="<?php $this->title(); ?>" /> <meta property="og:description" content="<?php echo html((!empty($this->metadesc_item) ? string_replace_keys_values_extended($this->metadesc, $this->metadesc_item) : $this->metadesc), false) ?>" /> <meta property="og:image" content="<?php html($config->host); ?>/templates/default/images/image11.jpg" /> <meta property="og:image:secure_url" content="<?php html($config->host); ?>/templates/default/images/image11.jpg" /> <meta property="og:image:type" content="image/jpeg" /> <meta property="og:image:height" content="200" /> <meta property="og:image:width" content="200" />
В этом случае там где нет разметки от компонента, будет подхватывать эту по умолчанию...
Правда там где есть от компонента будет две разметки...
Вообще конечно разметки по умолчанию для всех страниц в компоненте не хватает…