Status
Not open for further replies.
Not to do status updates from??
That is correct and yes that looks like a different mod.

Nines
Post # 17
Forum block: shows the latest status updates.

I think a lot of us would like to see a dbtech Status Mod go Pro...
 
Last edited:
Open the folder status\upload\includes\block\ and open the file dbtech_status.php

Look for the line the says LIMIT 5 and change 5 to what ever number you want to display.

Then load the file to ftp to, includes/block/ and overwrite the existing file.
 
One more thing ;) How do I remove the hide/show button from the sidebar block? (so that users cannot hide the block)
 
Open the template DragonByte Tech: User Status & Moods Templates/dbtech_status_block_latest and replace the contents there with this:

HTML:
<li>
    <div class="block smaller">
        <div class="blocksubhead">
            <!--<a class="collapse" id="collapse_block_status_{vb:raw blockinfo.blockid}" href="{vb:raw relpath}#top"><img alt="" src="{vb:stylevar imgdir_button}/collapse_40b.png" id="collapseimg_status_{vb:raw blockinfo.blockid}"/></a>-->
            <span class="blocktitle">{vb:raw blockinfo.title}</span>
        </div>
        <div id="block_status_{vb:raw blockinfo.blockid}" class="blockbody floatcontainer">
            <ul class="blockrow">
                <vb:each from="status" key="id" value="stat">
                <li class="floatcontainer" style="margin-bottom: 3px;">
                    <div class="smalltext">
                        <p style="font-style: italic; font-weight: bold;">{vb:raw stat.status}</p>
                        <div class="meta">
                            {vb:raw stat.date} <span class="time">{vb:raw stat.time}</span>
                            <br/>
                            <a href="member.php?u={vb:raw stat.userid}" class="title">{vb:raw stat.username}</a>
                        </div>
                    </div>
                </li>
                </vb:each>
            </ul>
        </div>
    </div>
    <div class="underblock"></div>
</li>
 
Status
Not open for further replies.
Back
Top