I have a main site with a field group for employee bios. There are some text fields, and a couple of file fields. These are working fine on the main site.
On the MSM site, I am pulling in the employee bio’s as well. The text fields content is working fine and displays on the MSM site correctly. For some reason the file fields aren’t returning anything. It isn’t displaying any URL. Any ideas?
Here’s the template code…The “bio_photo” and “bio_vcard” are file fields that have files uploaded. They don’t display anything…even an incorrect link would have been more helpful 😊
{exp:channel:entries site="default_site" category="8" channel="employee_bio" disable="member_data|pagination" limit="1"}
<article>
<h1>{title}</h1>
{bio_photo}
{if bio_employee_position}<h2>{bio_employee_position}</h2><p>{/if}<br />
{if bio_email}<a href="mailto:{bio_email}">{bio_email}</a>{/if}{if bio_vcard} | <a href="http://{bio_vcard}">vCard</a>{/if}<br />
{if bio_quote}“{bio_quote}”{/if}<br />
{bio_content} <br />
</article><br />
{/exp:channel:entries}