Nearly a year ago, I developed the following page for artist profiles.
http://www.visualsound.net/index.php/artists
At the time, there were roughly 25 artist in the system. Today there are over 105 artists.
The problem is, the code is stopping at 100.
I am using the following code to generate the table.
{exp:weblog:entries orderby="url_title" sort="asc" weblog="artist" disable="categories|member_data|trackbacks" }
<div class="clear"> </div>
<td align="left" valign="top">
<a href="http://{path="><?php $clean_image_tag = </a>
<h4><a href="http://{path="><strong>{title}</strong></a></h4>
<p><div class="clear"> </div></p>
<p>{if count == "5"}</tr><tr>{/if}<br />
{if count == "10"}</tr><tr>{/if}<br />
{if count == "15"}</tr><tr>{/if}<br />
[... all the way to 150]<br />
{/exp:weblog:entries}<br />
</td></tr></table>
Obviously, the count option is not optimal, but when it was originally created it was set to 50 and has since grown. I am using a weblog (artists) that contains fields for a variety of details, so a gallery was not an option.
First problem obviously, is why has it stopped at 100? There is no limit parameter set in the weblog query and the count as non-optimal as it is goes to 150.
Second, what is an optimal way to display this page?
Thanks!
note: the content is handled through the client which did not use the the same image size for each of the artists, so if anyone was wondering why the photos are scaled, it was due to lack of following directions on image sizes 😊 I think they download the image from the artists…