Skip to content

Instantly share code, notes, and snippets.

View mauhg's full-sized avatar

Mauricio Hernandez mauhg

  • Heredia, Costa Rica
View GitHub Profile
@mauhg
mauhg / d8-hide-language-page.php
Last active January 9, 2020 20:55
Drupal 8: Hide language from pages
<?php
/*
* Some cases the language is display at the bottom of the page when translation is enable
* and the config from the ui is not working use this snipet
*/
$entity_display_repository = \Drupal::service('entity_display.repository')
->getViewDisplay('node', '<CONTENT_TYPE_NAME>', 'full')
->removeComponent('langcode')
->save();