But would love to use Content_Dump plugin to showcase Projects on the home page..
Could anyone point me in the right direction to finding the values of the fields I create in
i.e
Code: Select all
{AdvancedContent block="images" label="Select your beloved images" block_type="select_multiple" items=":::list_files dir='images':::" values=":::list_files dir='images' display='relurl':::" smarty="true" assign="images"}
{assign var="img_array" value='|'|explode:$images}
{foreach from=$img_array item="image"}
{if $image !=""}
<img src="{uploads_url}/{$image}" />
{/if}
{/foreach}
{content_dump}
{foreach from=$dump item=dump}
{$dump->content->data}
{$dump->content->alias}
{$dump->extensions->video}
{/foreach}
Any pointers here?