Guest User

Untitled

a guest
Feb 25th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. /**
  2. * Removes Olark chat from non English pages.
  3. * @param $variables
  4. */
  5. function yourtheme_preprocess_html(&$variables) {
  6. $language = \Drupal::languageManager()->getCurrentLanguage()->getId();
  7. if ($language <>'en' && isset($variables['page_bottom']['olark'])) {
  8. unset($variables['page_bottom']['olark']);
  9. }
  10. }
Add Comment
Please, Sign In to add comment