Extra Block Types (EBT) - New Layout Builder experience❗

Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.

Demo EBT modules Download EBT modules

❗Extra Paragraph Types (EPT) - New Paragraphs experience

Extra Paragraph Types (EPT) - analogical paragraph based set of modules.

Demo EPT modules Download EPT modules

Scroll

"Неканоническая" у меня на сайте drupal8

"Неканоническая" у меня на сайте drupal8
, by

Все страницы стали "Неканоническая" у меня на сайте 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');
}