Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Show Users System Specs Details »»
Show Users System Specs
Version: 1.00, by SnowBot SnowBot is offline
Developer Last Online: Oct 2016 Show Printable Version Email this Page

Version: 3.5.0 Rating:
Released: 10-05-2005 Last Update: 10-06-2005 Installs: 193
Template Edits
 
No support by the author.

This is my first template mod released here so i hope you like it. I have been asked many times for this as its a nice funky feature so here you go.

What is it?
Well this mod will enable your members to input their system info via the usercp edit options page and have them display in a nice menu in the postbit. It is run by conditionals so they do not have to have it if they dont want to. Default is set to off.

What does it look like?
See screenshots

Dont forget to click INSTALL

Snowy @ www.synergyforums.com

Show Your Support

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

Comments
  #92  
Old 01-01-2009, 01:02 PM
Bro_Joey_Gowdy's Avatar
Bro_Joey_Gowdy Bro_Joey_Gowdy is offline
 
Join Date: May 2002
Location: Hickory Flat MS 38633
Posts: 364
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*waits for the 3.8.0 release*
Reply With Quote
  #93  
Old 01-04-2009, 03:11 PM
edermix edermix is offline
 
Join Date: Aug 2008
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I did an adaptation of this mod for vBulletin 3.8.x, follows.

Attachment 91713
Reply With Quote
  #94  
Old 02-24-2009, 06:51 PM
Sworm Sworm is offline
 
Join Date: Feb 2008
Posts: 422
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

i have added your code and for show the username i have added(In RED):


Quote:
<!--System Specs-->
<div class="vbmenu_popup" id="sysinfo_$post[postid]_menu" style="display:none">

<table cellpadding="4" cellspacing="1" border="0">
<td class="thead">Specifiche Tecniche del Sistema di $post[username]</td>
<if condition="$post[field7]"><tr><td class="vbmenu_option"><b>CPU:</b> $post[field7]</td></tr></if>
<if condition="$post[field8]"><tr><td class="vbmenu_option"><b>Sistema Operativo:</b> $post[field8]</td></tr></if>
<if condition="$post[field9]"><tr><td class="vbmenu_option"><b>Scheda Madre:</b> $post[field9]</td></tr></if>
<if condition="$post[field10]"><tr><td class="vbmenu_option"><b>Hard Disk:</b> $post[field10]</td></tr></if>
<if condition="$post[field11]"><tr><td class="vbmenu_option"><b>Memoria RAM:</b> $post[field11]</td></tr></if>
<if condition="$post[field14]"><tr><td class="vbmenu_option"><b>Masterizzatore:</b> $post[field14]</td></tr></if>
<if condition="$post[field16]"><tr><td class="vbmenu_option"><b>Software P2P Preferito:</b> $post[field16]</td></tr></if>
<if condition="$post[field17]"><tr><td class="vbmenu_option"><b>BIOS:</b> $post[field17]</td></tr></if>
<if condition="$post[field18]"><tr><td class="vbmenu_option"><b>Scheda Audio:</b> $post[field18]</td></tr></if>
<if condition="$post[field19]"><tr><td class="vbmenu_option"><b>Scheda Video:</b> $post[field19]</td></tr></if>

</table>
</div>
<!--/System Specs-->

Code:
<!--System Specs-->
<br />
<if condition="$post[field15] = YES">
<div id="sysinfo_$post[postid]" align="left" class="info" nowrap>
<a href="#sysinfo"><b>Sistema</b> </a><script type="text/javascript"> vbmenu_register("sysinfo_$post[postid]"); </script></div>
</if>
<br />
<!--/System Specs-->

IN my postbit_legacy template.

I have created a new profile field with a only other difference
1. Go to AdminCP => User Profile Field Manager => Add New User Profile Field
Single-Selection Radio Buttons

Title: System Specs
Description: Would you like to show other members your computer specs?
Options:
NO
YES
Set Default: Yes.
Field Required: No, but display at registration
Field Editable To User: Yes
Display Page: Thread Viewing

The others fields are like this:
Go to AdminCP => User Profile Field Manager => Add New User Profile Field

Profile Field Type: Single-Line Text Box

Title: CPU
Description: What CPU do you have?
Field Required: NO
Field Editable by User: YES
Display Page: Thread Viewing


Now,
please anybody want to said me why if i select in the profile options page and in reg phase too, "NO" under "Would you like to show other members your computer specs?" , is showed in each case (see the image below please)?

The system fieeld is showed too if anybody don't have added nothing of hardware specs, why? And how can i fix?


Please help me, what is the error?
Reply With Quote
  #95  
Old 04-07-2009, 07:44 PM
FReeSTER FReeSTER is offline
 
Join Date: Jun 2006
Location: Rome
Posts: 730
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by edermix View Post
I did an adaptation of this mod for vBulletin 3.8.x, follows.

Attachment 91713
Still not showing!
Any Ideas for get this working on 3.8.0?
Reply With Quote
  #96  
Old 05-24-2009, 07:38 PM
Barteh Barteh is offline
 
Join Date: Aug 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Slight typo in edermix' 3.8.0 version

swap

<if condition="$post[fieldX] = YES">

for

<if condition="$post['fieldX'] == 'YES'">

Leave the rest of the conditionals alone though, they're fine. And fieldX like with the rest has to be replaced by whichever field it turns out to be after creating of course.
Reply With Quote
  #97  
Old 05-25-2009, 09:05 PM
server-ceo server-ceo is offline
 
Join Date: May 2009
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

not working on 3.8.2 even by this replacement, any idea?
Reply With Quote
  #98  
Old 05-25-2009, 10:52 PM
Barteh Barteh is offline
 
Join Date: Aug 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed it on my own boards last night, I can confirm it's working...

1. use edermix' adapted version
2. apply the correction I posted last night

Read the installation instructions well and follow them to the letter, you will miss things if you rush it.
Reply With Quote
  #99  
Old 09-19-2009, 09:57 AM
Barteh Barteh is offline
 
Join Date: Aug 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Something odd has happened... the system specs are still there but *only* visible for the administrator usergroup (so unfortunately it took me a while to notice).
I didn't add any usergroup conditionals and I don't see any near the modified code, but I assume something happened after installing one of the latest vB patches. Has anyone else had this problem and if so, did you manage to fix it?
Reply With Quote
  #100  
Old 09-23-2009, 01:37 PM
Barteh Barteh is offline
 
Join Date: Aug 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Finally had some time to trawl through usergroup permissions... "Can View Private Custom Fields" needs to be set to 'yes' for any usergroup you want to be able to view the postbit /postbit legacy system specs.

Not sure why it worked before though... Unless this field was introduced recently or a related bit of code was changed in one of these patches?
Reply With Quote
  #101  
Old 02-18-2010, 06:45 PM
cloferba cloferba is offline
 
Join Date: Apr 2009
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how can i apply this to vb4?
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 08:52 AM.


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.04854 seconds
  • Memory Usage 2,311KB
  • Queries Executed 25 (?)
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)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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