Skip to content

Instantly share code, notes, and snippets.

View amitsedai's full-sized avatar
🎯
Focusing

Amit Sedai amitsedai

🎯
Focusing
  • Bangalore, India
View GitHub Profile
@amitsedai
amitsedai / gist:9c67c3bd8f10743a55f3
Created August 12, 2014 11:40
Alter field title of content type to display description below the field title
<?php
function ji_custom_node_view($node, $view_mode, $langcode) {
if($view_mode != 'full'){
return;
}
switch ($node->type) {
case 'blood_donor_form':
foreach ($node->content as $field_name => $field_options) {
if(isset($field_options['#title']) && isset($field_options[0]['markup'])) {