Here is what I have done
template memberinfo_block_photos
PHP Code:
<div id="view-photos" class="<vb:if condition="$selected_tab == 'photos'">selected_view_section<vb:else />view_section</vb:if><vb:if condition="$userinfo['userid'] != $bbuserinfo['userid']"> vm_other_prof</vb:if>">
<div class="blocksubhead subsectionhead userprof_headers userprof_headers_border">
<h4 class="subsectionhead-understate">User albums</h4>
</div>
<div class="albums">
<h5 class="blocksubhead smaller">
<a class="textcontrol" href="album.php?{vb:raw session.sessionurl}do=addalbum">{vb:rawphrase add_album}</a>
<span class="albums_total">{vb:raw albumcount}</span> {vb:rawphrase albums}
</h5>
<div class="blockbody userprof_content userprof_content_border">
<ul class="albumslist blockrow image_link_list">
{vb:raw albumbits}
</ul>
</div>
</div>
</div>
template memberinfo_block_photosbit
PHP Code:
<li class="floatcontainer">
<div class="albumthumb_container image_container">
<a class="album_showcase image_bit" href="album.php?{vb:raw session.sessionurl}albumid={vb:raw album.albumid}">
<vb:if condition="$album['hasthumbnail']">
<img alt="{vb:raw album.title_html}" class="album_showcase" src="attachment.php?{vb:raw session.sessionurl}attachmentid={vb:raw album.attachmentid}&thumb=1&d={vb:raw album.thumbnail_dateline}"/>
<vb:else />
<img alt="{vb:raw album.title_html}" class="album_showcase" src="{vb:stylevar imgdir_misc}/default-album.png"/>
</vb:if>
</a>
</div>
<div class="album_content row_content">
<h6>
<a href="album.php?{vb:raw session.sessionurl}albumid={vb:raw album.albumid}">{vb:raw album.title_html}</a>
<vb:if condition="$show['moderated']"> <img class="inlineimg" src="{vb:stylevar imgdir_misc}/moderated_small.gif" alt="{vb:rawphrase x_moderated_pictures, {vb:raw album.moderatedcount}}" /></vb:if>
</h6>
<vb:if condition="$album['lastpicturedate']">
<span class="shade">{vb:raw album.picturedate}<vb:if condition="$show['detailedtime']">{vb:raw album.picturetime}</vb:if></span>
</vb:if>
</div>
</li>
and each plugin of the two I mentioned above
works with each template
i.e. the plugin with hook member_profileblock_album_query
create the albums bits alltogather which is temaplate memberinfo_block_photosbit
and the plugin member_complete
create the albums whole template which is memberinfo_block_photos that contains
memberinfo_block_photosbit
hope this cleared everything????