문제

I have a view block that takes pulls a field collection. The field collection can contain unlimited number of items, where each item has two fields (url and logo).

When I kpr(get_defined_vars) within block--views--my-view-block-block.tpl.php I get the following :

enter image description here

as you can see $content is just a string, so I cannot access the field collection items. I can access and template each field within field collection just fine, but what I need to do is theme each Element that contains a link and logo. Does anyone have any ideas how do accomplish this?

도움이 되었습니까?

해결책 2

ended up creating a view tpl and using

enter image description here

다른 팁

Just try to use below portion of the content variable.

<?php print render($content['field_video_file_col']); ?>

Instead of "field_video_file_col" , replace the field name with your link and logo and use render function.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top