Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save radheymkumar/56a771f9fc2937bf137d5b1c8c9b64fb to your computer and use it in GitHub Desktop.
Save radheymkumar/56a771f9fc2937bf137d5b1c8c9b64fb to your computer and use it in GitHub Desktop.
How to alter single custom field value in views?
function hook_views_pre_render(&$view) {
switch ($view->name) {
case 'YOUR_VIEW_NAME':
// override the global custom text field value
$view->field['nothing']->options['alter']['text'] = 'My custom text';
$view->field['nothing']->options['alter']['alter_text'] = TRUE;
break;
}
}
**************************************************************************************
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment