Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Usergroup Background in postbit Legacy Details »»
Usergroup Background in postbit Legacy
Version: 1.00, by Dr.osamA Dr.osamA is offline
Developer Last Online: Oct 2015 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 4.0.1 Rating:
Released: 02-04-2010 Last Update: Never Installs: 23
Template Edits
Code Changes  
No support by the author.

Hi all !!

It's just the idea of making the background of the responses and posts a usergroup in postbit Legacy

Demo

see pic in attachment

lets do it and try

Style Manager -> template postbit.css find

PHP Code:
.postbitlegacy .postbody, .eventbit .eventdetails .eventbody {
    
margin-{vb:stylevar left}: {vb:stylevar postbitlegacy_userinfo_width};
    
border-{vb:stylevar left}: {vb:stylevar postbit_userinfo_border};
    
background: {vb:stylevar postbit_background};
    
_background-imagenone;
    
padding-bottom1em;

add ander it

PHP Code:
/* Dr.osamA - alra7ba editing postbit */
.postbitlegacy .postbody_admin, .eventbit .eventdetails .eventbody {
    
margin-{vb:stylevar left}: {vb:stylevar postbitlegacy_userinfo_width};
    
border-{vb:stylevar left}: {vb:stylevar postbit_userinfo_border};
    
backgroundurl(http://www.xxxx.net/forum/xxx/Back-Admin-1.gif) repeat;
    
_background-imagenone;
    
padding-bottom1em;

chenge the link to your image URL
PHP Code:
http://www.xxxx.net/forum/xxx/Back-Admin-1.gif 
then save work

in template postbit_legacy find


PHP Code:
<div class="postbody"
replece with

PHP Code:
<vb:if condition="is_member_of($post, #)"><div class="postbody_admin">
<
vb:else />
<
div class="postbody">
</
vb:if> 
the red # is your usergroup's ID

then save work

it is all

you can use this image
http://www.alra7ba.net/vb/alra7ba/Back-Admin-1.gif

or this one
http://www.alra7ba.net/vb/alra7ba/Back-Admin-2.gif

or any image you want

PS: this working in VB 4.0.1 too

Demo

Enjoy

Screenshots

File Type: jpg adm.jpg (68.9 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 01-26-2012, 06:50 AM
iSins iSins is offline
 
Join Date: May 2011
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible to make it Auto Resize? I wanted to use a big background but have it resize automatically.
Reply With Quote
  #23  
Old 02-09-2012, 04:45 PM
Cromags21 Cromags21 is offline
 
Join Date: Jun 2006
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there away to have an image on the right side of the post. I run a online gaming site, looking for something that can help us show what leagues members are in..

Some members are in 2 different leagues , This mod is 1 background image. I would like to divide the right side of the post with an image that says Leagues,then under it showing the images of the leagues they are in.. NHL,MLB ...etc

But stack images NHL on top,then MLB in middle and NFL at the bottom

Another then that I think you MOD is awesome, I think I can figure it out myself.
Reply With Quote
  #24  
Old 02-10-2012, 03:03 PM
HHelp1's Avatar
HHelp1 HHelp1 is offline
 
Join Date: May 2011
Location: Florida
Posts: 275
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

May you please share your postbit PLEASE? We very APPRECIATE that!
Reply With Quote
  #25  
Old 07-05-2012, 09:04 AM
Pure Dope Pure Dope is offline
 
Join Date: Dec 2006
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I believe you could improve this code by doing:

Code:
<div class="postbody postbg{vb:raw post.userid}">
Then when you want to add css for someone do it like this in the additional.css

Code:
.postbitlegacy .postbg<USERID>, .eventbit .eventdetails .eventbody { 
   background-color: grey;
}
This way you dont have any conditions, and the code is a bit cleaner. Of course, this works by userid, and not usergroup, but its easily modified to work for usergroups by just adding another class.
Reply With Quote
Благодарность от:
Merjawy
  #26  
Old 08-21-2012, 09:40 AM
svyrydov svyrydov is offline
 
Join Date: Jan 2012
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello
If I want to change background only as shown on screenshot below?
What I have change in code?
Thanks.

Attachment 140633
Reply With Quote
  #27  
Old 10-13-2012, 07:33 AM
Pure Dope Pure Dope is offline
 
Join Date: Dec 2006
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by svyrydov View Post
Hello
If I want to change background only as shown on screenshot below?
What I have change in code?
Thanks.

Attachment 140633
ever get help w/it?
Reply With Quote
  #28  
Old 05-26-2014, 11:39 PM
Ghostt Ghostt is offline
 
Join Date: Oct 2009
Posts: 359
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Pure Dope View Post
I believe you could improve this code by doing:

Code:
<div class="postbody postbg{vb:raw post.userid}">
Then when you want to add css for someone do it like this in the additional.css

Code:
.postbitlegacy .postbg<USERID>, .eventbit .eventdetails .eventbody { 
   background-color: grey;
}
This way you dont have any conditions, and the code is a bit cleaner. Of course, this works by userid, and not usergroup, but its easily modified to work for usergroups by just adding another class.
can you show me the same please for vb 3.8?
Reply With Quote
Reply


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 06:22 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04562 seconds
  • Memory Usage 2,323KB
  • Queries Executed 24 (?)
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
  • (4)bbcode_code
  • (5)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (8)post_thanks_box
  • (1)post_thanks_box_bit
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (8)post_thanks_postbit_info
  • (7)postbit
  • (1)postbit_attachment
  • (8)postbit_onlinestatus
  • (8)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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete