Scroll
"Неканоническая" у меня на сайте drupal8
"Неканоническая" у меня на сайте drupal8
Все страницы стали "Неканоническая" у меня на сайте drupal8 ((
если это не здесь, то где копать(((? уже всё перелопатил((
1 answer
votes: 1344
Answer
Попробуйте использовать модуль Metatag:
https://www.drupal.org/project/metatag
Если не поможет, то можно через hook_html_head_alter поменять мета теги в кастомном модуле:
http://api.hostdog.gr/api/drupal-8/drupal!core!modules!system!system.api.php/function/hook_html_head_alter/8.x
Если такого хука уже нет в 8ом друпале, то попробуйте через препроцес:
в файле темы template.php
/*
* Implements hook_preprocess_html()
* Set up variables from the environment
*
*
*/
function yourtheme_preprocess_html(&$variables) {
// First, we must set up an array
$element = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array('http-equiv' => 'X-UA-Compatible', 'content' => 'IE=edge,chrome=1'),
);
drupal_add_html_head($element, 'chrome_frame');
}