Hey guys, I got this:
{exp:favorites:entries weblog="photos" limit="3" username="{embed:the_user}"}
{if no_results}
<p>No favourites found. Pourquoi?</p>
{/if}
<a class="userBox left topthumbs" href="{path=views/details}{entry_id}" style="background-image:url(/phpthumb/phpThumb.php?src={imagefile}&zc;=T&w;=65);position:relative">
<div style="height: 1.2em; font-size:75%" class="photoTexts">{title}</div>
</a>
{/exp:favorites:entries}
And it’s giving me only 2 entries, yet this:
{exp:favorites:entries weblog="photos" limit="99" username="{username}"}
{if no_results}
<p>No favourites found. Pourquoi?</p>
{/if}
{if no_results}
<p>{screen_name} hasn't marked any photos as favourites.</p>
{/if}
<div class="photocell" style="float:left;width:150px;height: 150px;padding:0px;margin:10px 5px;text-align:center;background:url(/phpthumb/phpThumb.php?src={imagefile}&zc;=T&w;=150);">
{/exp:favorites:entries}
Returns all 8 entries that I’ve marked as favourites. I’m pretty sure it’s not because I’m misspelling my labels (the Canadian way).
Also note that in the example directly above I have the if no_results listed twice. This is because it won’t work if I have only one, and in this case it recognizes only the second one. What’s up with that?
