Status
Not open for further replies.
Well there is a few way to do it.. You can go to your status and mood templates. And there are two you could copy..
Mood = dbtech_status_mood_postbit
Status = dbtech_status_postbit.

You could copy them and make a view or you could make a view for each like I did..

Status and mood.webp
 

Attachments

  • Status and mood.webp
    Status and mood.webp
    12.6 KB · Views: 6
Last edited:
Can't make it work :( Can you please be more specific about the code that i need to remove or that i need to copy to create a view?
 
Last edited:
There is no code to remove.. Just make a new view for status and mood.. Then add this code to it.. Either together or a view for each.

MOOD CODE:
Code:
<vb:if condition="!empty($post['dbtech_status_mood']) || !empty($vboptions[dbtech_status_default_mood])">
<vb:if condition="$vboptions['dbtech_status_moodenabled'] == 1">
<div class="rank" class="yui-skin-sam">
 <div id="dbtech_status_mood{vb:var post.postid}">
                {vb:raw vboptions.dbtech_status_mood_prefix} 
  <div id="dbtech_status_moodtext{vb:var post.postid}" style="display:inline;">
   <vb:if condition="$post['dbtech_status_mood']">
    {vb:raw post.dbtech_status_mood}
   <vb:else />
    {vb:raw vboptions.dbtech_status_default_mood}
   </vb:if>
  </div>
   
  <vb:if condition="$show['dbtech_status_mood_change']">
   <a style="cursor: pointer;" href="javascript://" onclick="return FBStatus{vb:var post.postid}.init_edit_mood();">
    <img src="{vb:stylevar imgdir_button}/edit_40b.png" alt="{vb:rawphrase edit}" />
   </a>
  </vb:if>
 </div>
</div>
 
 <div style="display:none;" id="dbtech_status_mood_controls{vb:var post.postid}">
                <span style="font-weight: bold;">{vb:rawphrase dbtech_status_moodedit} - <a href="javascript://" onclick="return FBStatus{vb:var post.postid}.cancel_edit_mood();">{vb:rawphrase cancel}</a></span>
  <div id="dbtech_status_moodinput{vb:var post.postid}"></div>
<ul class="floatcontainer">
                            {vb:raw critbit}
                </ul>
 </div>
<script type="text/javascript">
<!--
 // Initialise the object
 var FBStatus{vb:var post.postid} = new FBStatus_Obj();
 
 // Set the userid
 FBStatus{vb:var post.postid}.set_userid('{vb:raw post.userid}', '{vb:var post.postid}');
  
 // Init editors
 <vb:if condition="$vboptions['dbtech_status_moodenabled'] == 1">FBStatus{vb:var post.postid}.set_mood_editors();</vb:if>
 <vb:if condition="$vboptions['dbtech_status_enabled'] == 1">FBStatus{vb:var post.postid}.set_status_editors();</vb:if>
// -->
</script>
</vb:if>
</vb:if>

STATUS CODE:
Code:
<vb:if condition="!empty($post['dbtech_status_status']) || !empty($vboptions[dbtech_status_default])">
<span class="rank">
 <div id="dbtech_status_status{vb:var post.postid}">
  <div id="dbtech_status_statustext{vb:var post.postid}" style="display:inline;">
   <vb:if condition="$post['dbtech_status_status']">
    {vb:raw vboptions.dbtech_status_prefix} {vb:raw post.dbtech_status_status}
   <vb:else />
    {vb:raw vboptions.dbtech_status_default}
   </vb:if>
  </div>
   
  <vb:if condition="$show['dbtech_status_change']">
   <a style="cursor: pointer;" href="javascript://" onclick="return FBStatus{vb:var post.postid}.init_edit_status();">
    <img src="{vb:stylevar imgdir_button}/edit_40b.png" alt="{vb:rawphrase edit}" />
   </a>
  </vb:if>
 </div>
 
 <div style="display:none;" id="dbtech_status_controls{vb:var post.postid}">
  <input type="text" tabindex="1" value="" id="dbtech_status_input{vb:var post.postid}" name="status" class="primary textbox" style="width:95%; margin: 1px;" /><br />
  
  <input type="button" class="button" value="{vb:rawphrase save}" onclick="return FBStatus{vb:var post.postid}.save_edit_status();" /> 
  <input type="button" class="button" value="{vb:rawphrase cancel}" onclick="return FBStatus{vb:var post.postid}.cancel_edit_status();" />
 </div>
</span>
<vb:if condition="$vboptions['dbtech_status_moodenabled'] == 0">
<script type="text/javascript">
<!--
 // Initialise the object
 var FBStatus{vb:var post.postid} = new FBStatus_Obj();
 
 // Set the userid
 FBStatus{vb:var post.postid}.set_userid('{vb:raw post.userid}', '{vb:var post.postid}');
// Init editors
 <vb:if condition="$vboptions['dbtech_status_moodenabled'] == 1">FBStatus{vb:var post.postid}.set_mood_editors();</vb:if>
 <vb:if condition="$vboptions['dbtech_status_enabled'] == 1">FBStatus{vb:var post.postid}.set_status_editors();</vb:if>
// -->
</script>
</vb:if>
</vb:if>
 
I tried what you suggested above. I made a new view and copied the html code and nothing shows up in postbit
 
Status
Not open for further replies.

Similar threads

  • Locked
  • thread_type.dbtech_ecommerce_suggestion thread_type.dbtech_ecommerce_suggestion
Replies
1
Views
677

Legacy Postbit Tabs

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
497
Customer rating
0.00 star(s) 0 ratings
Back
Top