Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Design and Graphics Discussions

Reply
 
Thread Tools Display Modes
  #11  
Old 11-09-2013, 12:44 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use the code I provided and add Status: before the other text, Online, Ofline Invisible.
Reply With Quote
  #12  
Old 11-09-2013, 12:51 AM
Wajow-community Wajow-community is offline
 
Join Date: Dec 2009
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
Use the code I provided and add Status: before the other text, Online, Ofline Invisible.
Yess butt its nearly to offline like this

Status:Online

I want Status: Online


Just like how you see it on the site forum that i have gived

Look pleasse at: http://forums.hababam.nl/showthread....21#post6954721 then you see what i mean.
Reply With Quote
  #13  
Old 11-09-2013, 12:54 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Paste the code you added to the template please.
Reply With Quote
  #14  
Old 11-09-2013, 01:04 AM
Wajow-community Wajow-community is offline
 
Join Date: Dec 2009
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
Paste the code you added to the template please.
I have do that, butt it's show like here nearly the nickname online

I want it in the userinfo_extra:

Status: Online/offline/inviseble
Joined: 09-11-2013


etc..
Reply With Quote
  #15  
Old 11-09-2013, 01:09 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Then I think you are looking for a mod, not just what you originally asked for, https://vborg.vbsupport.ru/showthrea...hlight=postbit
Reply With Quote
  #16  
Old 11-09-2013, 01:18 AM
Wajow-community Wajow-community is offline
 
Join Date: Dec 2009
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
Then I think you are looking for a mod, not just what you originally asked for, https://vborg.vbsupport.ru/showthrea...hlight=postbit
No thats not what i search its change the info in showthread.
Reply With Quote
  #17  
Old 11-09-2013, 01:40 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well you have managed to completely confuse me. I answered your original question, have provided you with a link to make the postbit look like the link you posted.

Maybe someone else can figure out exactly what it is you want, or possibly if you could post a mockup in photoshop of how you want it to look on your site.
Reply With Quote
  #18  
Old 11-09-2013, 01:59 AM
Wajow-community Wajow-community is offline
 
Join Date: Dec 2009
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
Well you have managed to completely confuse me. I answered your original question, have provided you with a link to make the postbit look like the link you posted.

Maybe someone else can figure out exactly what it is you want, or possibly if you could post a mockup in photoshop of how you want it to look on your site.
It's actually quite simple for scripters what I want. I use a standard style vbulletin 4.2.1.

I would like the forum I just gave the left of the:

Status: Online / offline under the avatar above the message counter t forum

So just the bit of text: Status: few spaces such as:

Joined date: 09-11-2013

with next line in green color or red status please visit: http://forums.hababam.nl/showthread....0682&p=6954085 # post6954085 then you will see clearly Status: online

Then you see the status what I mean and hope someone finally understands this.
Reply With Quote
  #19  
Old 11-09-2013, 02:04 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Edit the template postbit_onlinestatus found in the group Postbit Templates, and replace everything in there with this:

Code:
<vb:if condition="$onlinestatus==0"><span style="color: green;">Status: Offline</span>
<vb:elseif condition="$onlinestatus==1" /><span style="color: red;">Status: Online</span>
<vb:elseif condition="$onlinestatus==2" /><span style="color: orange;">Status: Invisible</span></vb:if>
The above will give you the text you want. To move it, follow what Krusty said.

quote=Krusty1231;2459187]In your postbit legacy find:

Code:
{vb:raw post.onlinestatus}
and place it where you want it.

For exaMPLE:

Find:

Code:
{vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
            </a>
            </vb:if>
put the
Code:
{vb:raw post.onlinestatus}
under that.

You might have to play with to find exactly where you want it.[/quote]
Reply With Quote
  #20  
Old 11-09-2013, 02:09 AM
Wajow-community Wajow-community is offline
 
Join Date: Dec 2009
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
Edit the template postbit_onlinestatus found in the group Postbit Templates, and replace everything in there with this:

Code:
<vb:if condition="$onlinestatus==0"><span style="color: green;">Status: Offline</span>
<vb:elseif condition="$onlinestatus==1" /><span style="color: red;">Status: Online</span>
<vb:elseif condition="$onlinestatus==2" /><span style="color: orange;">Status: Invisible</span></vb:if>
The above will give you the text you want. To move it, follow what Krusty said.

quote=Krusty1231;2459187]In your postbit legacy find:

Code:
{vb:raw post.onlinestatus}
and place it where you want it.

For exaMPLE:

Find:

Code:
{vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
            </a>
            </vb:if>
put the
Code:
{vb:raw post.onlinestatus}
under that.

You might have to play with to find exactly where you want it.
[/QUOTE]

Eg Member since: and the few spaces organized?

Quote:
{vb:raw post.onlinestatus}
need a script text before and after because I have tried to post it but can not get it as the site forum that I gave as an example
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:45 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04190 seconds
  • Memory Usage 2,256KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (8)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete