Actions in Views Bulk Operations Submitted by system on Wed, 27 Jul 2016 - 12:42 Views Bulk Operations come handy when doing bulk operations over a selected list. This is great because it combines the power of views to filter the selection and specific actions to do on each selected entity. Read more about Actions in Views Bulk OperationsLog in to post comments
Alter field title of content type to display description below the field title Submitted by system on Thu, 31 Jul 2014 - 06:59 This can be achieved using hook_node_view <?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'])) { $node->content["$field_name"]['#title'] = $field_options['#title'] ."".$field_options[0]['mark Read more about Alter field title of content type to display description below the field titleLog in to post comments