bear with me.
I have 2 weblogs artist and products
each product is related to an artist entry
on my page that displays the product in detail I want to also display thumbs and links to all the other products that are related to that artist.
so on my detail page: http://www.domain.com/indexee.php?/site/fine_art_detail/edge_of_the_woods/
I have this in my template:
This displays the product details:
{exp:weblog:entries orderby="date" sort="asc" limit="1" weblog="Products" dynamic="on" disable="member_data|trackbacks"}
{product_image}
<div id="producttextdetails">
<h3>{title}</h3>
<p>{related_entries id="product_artist"}</p>
<p>Artist: <a href="http://www.domain.com/indexee.php?/site/artist_detail/{url_title}">{artist_first_name} {artist_last_name}</a><br />
{/related_entries}<br />
Medium: {product_media}<br />
Dimensions: {product_size}<br />
{if product_sold == "Sold"}SOLD{/if}{if product_sold == "Available"}Price: {product_price}{if code}<br />
{code}{/if}<br />
<!--END PRODUCT--><br />
{/if}<br />
{/exp:weblog:entries}
And then I want this to display thumbs of all entries in the products weblog that are related to the artist that we are viewing above.
{exp:weblog:entries orderby="date" sort="desc" limit="99" weblog="Products" dynamic="off" category="5" disable="member_data|trackbacks"}
<!--START PRODUCT-->
{related_entries id="product_artist"}
<a href="http://{title_permalink={my_template_group}/fine_art_detail}" title="{title}">{exp:ed_imageresizer_ image="{product_image}"_ default=""/images/site/image_coming_soon.jpg"_ maxWidth="50"_ maxHeigth="50"_ cropratio="1:1"_ class="borderimg"_ alt="Image description"} </a>
{/related_entries}
<!--END PRODUCT-->
{/exp:weblog:entries}