Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function THEME_OR_MODULE_NAME_node_view_alter(&$build)
  2. {
  3. global $user;
  4. if($user->uid == 0)
  5. {
  6. if($build['#node']->nid == 1) // add node id's you want hidden here
  7. {
  8. if(isset($build['field_image']))
  9. {
  10. unset($build['field_image']);
  11. }
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement