Using Drupal Hook you can hide and disble any field from Drupal frontend using below code snippet:
Below code add on any drupal custom code
"use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
/**
* Implements hook_ENTITY_TYPE_view() for node entities.
*/
function module_name_node_view(array &$build, EntityInterface $node, EntityViewDisplayInterface $display, $view_mode) {
$build['field_name']['#access'] = FALSE;
}"
Clear Drupal cache and check you given field is hide on frontend using above. you can add condtion according to your requirement.
Follow us on below social media for such amazing web development related and drupal related trick and tip.
Facebook :- https://www.facebook.com/TOsTechhs/
Instagram :- https://www.instagram.com/toswebdeveloper/
Twitter :- https://twitter.com/TOs_Tech
Subsrcibe Youtube chaneel :- https://www.youtube.com/channel/UCx4zugyGG2toEj9xd_0uAmg
No comments:
Post a Comment