Closed (cannot reproduce)
Project:
Field collection
Version:
7.x-1.0-beta3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Jul 2012 at 18:19 UTC
Updated:
10 Jan 2016 at 07:20 UTC
Jump to comment: Most recent
Comments
Comment #1
jmuzz commentedI tried this with a field collection containing a text field using full HTML. I added a link to a node using the ckeditor link module and the URL was converted to the path alias I had given the target node.
If this is still happening please reopen with more specific steps to reproduce.
Comment #2
ChetTheDev commentedThe Reason why i had an issue with this is because i was rendering fields incorrectly. EX.
print $content_block->field_section_header['und'][0]['value']i was printing out the value when i needed to print out the 'safe_value'... but i found a better way to render fields by using field_view_field.
print render(field_view_field('field_collection_item', $content_block, 'field_section_header'))a good read on why to use field_view_field().
https://www.computerminds.co.uk/articles/rendering-drupal-7-fields-right...