n Adding More Theme Suggestions Programmatically To Fields in drupal 8 | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
Category:

Code snippet that can be used to add more theme suggestions programmatically to fields in drupal 8.

To do that in our custom theme folder in the .theme file we have to add the following hook function: hook_theme_suggestions_HOOK_alter like below:

<?php

/**
 * Implements hook_theme_suggestions_field_alter
 */
function mytheme_theme_suggestions_field_alter(array &$suggestions, array $variables) {
    // Build a variable with field information
    $element = $variables['element'];
    // sanitize #view_mode
    $sanitized_view_mode = strtr($element['#view_mode'], '.', '_');
    // Suggest template
    $suggestions[] = 'field__' . $element['#field_type'];
    $suggestions[] = 'field__' . $element['#field_name'];
    $suggestions[] = 'field__' . $element['#entity_type'] . '__' . $element['#bundle'];
    $suggestions[] = 'field__' . $element['#entity_type'] . '__' . $element['#field_name'];
    $suggestions[] = 'field__' . $element['#entity_type'] . '__' . $element['#field_name'] . '__' . $element['#bundle'];
    $suggestions[] = 'field__' . $element['#entity_type'] . '__' . $element['#field_name'] . '__' . $sanitized_view_mode;
    $suggestions[] = 'field__' . $element['#entity_type'] . '__' . $element['#field_name'] . '__' . $element['#bundle'] . '__' . $sanitized_view_mode;
}

 

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook