Hi all,
I’m using MSM and on a main site and I have a weblog of facility icons. So basically a title and icon field.
Then on one of the secondary sites I want to be able to use these icons in a related field. This works fine, but for some reason images(maybe custom fields) aren’t working.
Here is the ee template:
{exp:weblog:entries weblog="facilities" rdf="off" dynamic="off" disable="trackback|pagination"}
<div class="story insetLeft">
{related_entries id="facility_badge"}{facility_icon}{/related_entries}
<div>
<h3><span>{title}</span></h3>
<p> {facility_summary}<br />
<br />
</div><br />
<br />
{if facility_detail}<a href="/about/facilities/detail/{url_title}" class="read">View Details</a>{/if}<br />
<br />
</div><!-- // story insetLeft --></p>
<p>{/exp:weblog:entries}Here is the html output:
<div class="story insetLeft">
{facility_icon}
<div>
<h3><span>Restaurant</span></h3>
<p> The Four Seasons restaurant is pleasurable dining experience <br />
<br />
</div><br />
<br />
</div><!-- // story insetLeft -->The image should be the related info, I even changed to a different icon (Pool) to see if the title (alt attribute on the image) changed ok, hhich it does. So maybe it’s not parsing the custom fields on related entries?
Any help would be great!