I don't think that's a field module, so no. You could use a computed field to display what you need but this requires PHP knowledge. You could use View reference which is what I use peekaboo with, but you might need additional modules to solve your specific use-case for attaching the field to entities.
But alas, the peekaboo link doesn't show up. I have experimented with almost every combination I could think of in the display fields including excluding the node content field but had no luck...
Comments
Comment #1
danielb commentedI don't think that's a field module, so no. You could use a computed field to display what you need but this requires PHP knowledge. You could use View reference which is what I use peekaboo with, but you might need additional modules to solve your specific use-case for attaching the field to entities.
Comment #2
danielb commentedComment #3
eggthing commentedThanks for the computed field tip! I was able to get the node content showing via computed field using ;
$node_field[0]['value'] =$node->content[ testpage - node_content_1]['#value'];
But alas, the peekaboo link doesn't show up. I have experimented with almost every combination I could think of in the display fields including excluding the node content field but had no luck...