Quote:
Originally Posted by tahanan
HI, I installed the mod and it's good and working pretty well. I just want to get rid of the description line but even if I check "no description", it will show "Description:"
Is this a bug?
|
Quote:
Originally Posted by Blue Ink
I have the same problem... is there a fix? 
|
Guys this is a simple fix... The <if> conditional is missing from the
adv_portal_album_pictures_bit template.
Replace the
adv_portal_album_pictures_bit template with this code and you will be fine:
Code:
$perrow
<td class="$bgclass">
<div class="smallfont" id="picturebits" align="center">
<a href="$vboptions[bburl]/album.php?$session[sessionurl]albumid=$picture[albumid]&pictureid=$picture[pictureid]"><img class="page" src="$vboptions[bburl]/$picture[thumburl]" alt="$picture[caption_preview]" border="0" style="padding:$stylevar[cellpadding]px; <if condition="!$usercss">border:solid $stylevar[cellspacing]px $stylevar[tborder_bgcolor]</if>" $picture[dimensions] /></a>
<br /> <phrase 1="$vboptions[bburl]/member.php?$session[sessionurl]u=$picture[userid]" 2="$picture[musername]">$vbphrase[by_x]</phrase>
<if condition="$mod_options['album_picture_description']">
<br /> <strong>$vbphrase[description]</strong>: $picture[caption]
</if>
<if condition="$mod_options['album_picture_title']">
<br /> <strong>$vbphrase[album]</strong>: <a href="$vboptions[bburl]/album.php?$session[sessionurl]albumid=$picture[albumid]">$picture[albumstitle]</a>
</if>
</div>
</td>