I have a custom layout using [image_url] to link to the full size image. However, since they are high-res originals, it's taking along time to load. I tried to switch to [medium_url] but that doesn't work.
Am I doing something wrong here?
This works as seen here: http://www.bellingham.org/index.php/photo-contest
<li class='psgal_[gallery_id]' id='psimg_[image_id]' style='width: 33%;'>
<div id='psimage_[image_id]' style='width: 129px' class='bwbps_image_div'>
<a href='[image_url]' rel='lightbox[album_[gallery_id]]' title='[caption]' class='thickbox'><img src='[thumb_url]' class='ps_images' alt='[caption]' height='125' width='125' /></a><br/>
<a href='[image_url]' rel='lightbox[album_[gallery_id]cap]' title='[caption]' class='thickbox'><span class="bwbps_caption">[caption]</span></a><div id="psstar-[gallery_id]-[image_id]" class="bwbps-rating-incaption bwbps-rating-gal-[gallery_id]"> </div>
</div></li>
Changing to this does NOT work (I get a pop-up with the caption at the top, an X in the top right corner and no image):
<li class='psgal_[gallery_id]' id='psimg_[image_id]' style='width: 33%;'>
<div id='psimage_[image_id]' style='width: 129px' class='bwbps_image_div'>
<a href='[medium_url]' rel='lightbox[album_[gallery_id]]' title='[caption]' class='thickbox'><img src='[thumb_url]' class='ps_images' alt='[caption]' height='125' width='125' /></a><br/>
<a href='[medium_url]' rel='lightbox[album_[gallery_id]cap]' title='[caption]' class='thickbox'><span class="bwbps_caption">[caption]</span></a><div id="psstar-[gallery_id]-[image_id]" class="bwbps-rating-incaption bwbps-rating-gal-[gallery_id]"> </div>
</div></li>
resolved