Closed (duplicate)
Project:
Video Embed Field
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
23 Mar 2012 at 18:40 UTC
Updated:
27 Jan 2014 at 14:35 UTC
Jump to comment: Most recent
Comments
Comment #1
m0dMaybe I can give more information about what I want to do:
When a node is created, I want the thumbnail of Video Embed Field to be copied to an Image Field, if this Image Field is empty. I've used an "Entity has field" condition for each one of the fields. I can use the image field perfectly, but the video field can't be used at all.
Thanks!
Comment #2
mitchell commentedLet's see what they say.
Comment #3
mitchell commentedUpdated component.
Comment #4
Burningsoull commentedI Have the same problem :(
I use 7.x-2.0-beta5 - yes it still have the same problem with Rules.
Any solutions ?
Comment #5
primozsusa commentedfor the rules to see your video_embed_field add this to your module:
/**
* Implement hook_field_info_alter()
*/
function ts_video_migrate_field_info_alter(&$field_info) {
$field_info['video_embed_field']['property_type'] = 'uri';
}
then in rules you need to put your field into scope and it will be visible - usable also in actions - cool video about VBO and rules
http://commerceguys.com/blog/power-rules-views-bulk-operations-and-commerce
Comment #6
plopescMarking as duplicate of #1436146: Video embed field visible in Rules?
Comment #7
plopesc