Hello,
I'm trying to customize a view. I need to hide an embedded media field from $body or $teaser, but not in all views. Only in one.
When I write -> $node->$body, I can see all the text but video field too.
How can I hide or remove this field?

Thanks!

Comments

alex ua’s picture

Status: Active » Closed (fixed)

This is not an emfield issue, it is a general theming question, and is best asked in the forums rather than our queue. One place that you can start is with the content template module: http://drupal.org/project/contemplate

aerodog’s picture

Sorry this is a month too late, but you can just add the following to the end of emfield.module:


function emfield_form_alter($form_id,&$form){
	$form['field_mecchovid'][0]['embed']['#type'] = 'hidden';
}

Did that work for you?