The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[DBTech] User Spotlight v1 (vB4) Details »» | |||||||||||||||||||||||||||||||
DragonByte Technologies are proud to present User Spotlight v1: A mini mod to show a random member on your forumhome page.
Why User Spotlight? DBTech's User Spotlight mod lets you display a random member on your forum home page as a way to increase member commmunication. ------------------------------------------------------------------------------------------- If you like this mod please hit the button to the right ----> Please remember to click the, button to the right if you installed the mod ----> What does 'Marking As Installed' do ? * It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available. * For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention. * Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications. We appreciate the support! ------------------------------------------------------------------------------------------- Priority support for this version is handled at the Developers Website. ------------------------------------------------------------------------------------------- Major Features ForumHome Integration: Members' details will show in the infobar on the forumhome. ------------------------------------------------------------------------------------------- Feature List
------------------------------------------------------------------------------------------- This mod displays a copyright notification in the footer of the forum home page which includes:
Download Now
Screenshots
Show Your Support
|
Comments |
#172
|
|||
|
|||
In the Select Groups settings I have Admins unchecked but it continues to show them, why is that.
Regards |
#173
|
||||
|
||||
Do you think it would be possible to make the 'user spotlight' text editable? I would like to make it 'Artist/Member of the week' or something along the lines and manually modify it weekly.
|
#174
|
|||
|
|||
Idk what just happened. I installed this product and our forums went down. ACP is still working fine besides the plugin & products part. :/
Help please? |
#175
|
||||
|
||||
Quote:
ACP->Languages & Phrases->Search In Phrases Search text: dbtech_spotlightSelect "Phrase Text and Phrase Variable Name" and Exact Match Yes Dylan |
Благодарность от: | ||
neya |
#176
|
||||
|
||||
Quote:
Dylan |
#177
|
|||
|
|||
Anyway to make it a monthly random selection?
Would setting the selection to daily and then changing the cron to run monthly work for what I am looking to do? |
#178
|
||||
|
||||
Quote:
Dylan |
#179
|
||||
|
||||
Updated to v1.6.6
Feature: Can now specify userid's not selectable Fix: Phrased all cron and vbsetting text |
#180
|
||||
|
||||
Hi, I would like to know how I can configure the product to the user of my day or more active user out, so now I have and would also like to know how I can adapt it to a module in vBadvanced CMPS. I would appreciate your support.
|
#181
|
|||
|
|||
Hello DBTech
As you know following a request for improvement on your forum, I would like to highlight two users. Since my notions are limited to coding css and html, I can only change the program. Nevertheless I think I found a solution (not practical but manageable) to provide a second user display. In the template: dbtech_spotlight_userinfo I duplicated information in a table: HTML Code:
<table style="width:100%" border="0"> <tr><td> <vb:if condition="$use_full_block"> <div> <h2 class="blockhead" align="center">{vb:rawphrase dbtech_spotlight}</h2> <div class="blockbody formcontrols settings_form_border" id="dbtech_spotlight"> <div class="blockrow"> <vb:else /> <div id="wgo_spotlight" class="wgo_subblock section"> <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase dbtech_spotlight}" />Membre de la semaine</h3> <div> </vb:if> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td width="15"> </td> <vb:if condition="$spot_userdata['user_has_pic']"> <td width="{vb:raw vboptions.dbtech_spotlight_max_width}"> <img src="{vb:raw spot_userdata['pic']}" alt="User Image" border="0" style="max-height: {vb:raw vboptions.dbtech_spotlight_max_height}px; max-width: {vb:raw vboptions.dbtech_spotlight_max_width}px;"> </td> <td width="15"> </td> </vb:if> <td width="*"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td colspan="2"> <a href="{vb:raw spot_userdata['userlink']}">{vb:raw spot_userdata['musername']}</a> </td> </tr> <tr> <td> {vb:rawphrase posts}: </td> <td width="15"> </td> <td> <a href="search.php?do=finduser&userid={vb:raw spot_userdata['userid']}&contenttype=vBForum_Post&showposts=1">{vb:raw spot_userdata['posts']}</a> </td> </tr> <tr> <td> {vb:rawphrase threads}: </td> <td width="15"> </td> <td> <a href="search.php?do=finduser&userid={vb:raw spot_userdata['userid']}&starteronly=1&contenttype=vBForum_Thread">{vb:raw spot_userdata['threads']}</a> </td> </tr> <vb:if condition="$spot_userdata['spot_location']"> <tr> <td> {vb:rawphrase field2_title}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['spot_location']} </td> </tr> </vb:if> <vb:if condition="$spot_userdata['spot_occupation']"> <tr> <td> {vb:rawphrase field4_title}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['spot_occupation']} </td> </tr> </vb:if> <vb:if condition="$spot_userdata['show_reputation']"> <tr> <td> {vb:rawphrase reputation}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['reputation']} </td> </tr> </vb:if> <vb:if condition="$spot_userdata['cust_block_data']"> {vb:raw spot_userdata['cust_block_data']} </vb:if> <vb:if condition="$spot_userdata['can_view_forum']"> <tr> <td> {vb:rawphrase dbtech_spot_most_active}: </td> <td width="15"> </td> <td> <a href="forumdisplay.php?f={vb:raw spot_userdata['most_active_id']}">{vb:raw spot_userdata['most_active']}</a> </td> </tr> </vb:if> <tr> <td> {vb:rawphrase last_activity}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['user_lastdate']} </td> </tr> <vb:if condition="$spot_userdata['spot_signature']"> <tr> <td colspan="3"> {vb:rawphrase signature}:<br /> {vb:raw spot_userdata['spot_signature']} </td> </tr> </vb:if> </table> </td> </tr> </table> <vb:if condition="$use_full_block"> </div> </div> </div> <vb:else /> </div> </div> </vb:if> </td><td> <vb:if condition="$use_full_block"> <div> <h2 class="blockhead" align="center">{vb:rawphrase dbtech_spotlight}</h2> <div class="blockbody formcontrols settings_form_border" id="dbtech_spotlight"> <div class="blockrow"> <vb:else /> <div id="wgo_spotlight" class="wgo_subblock section"> <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase dbtech_spotlight}" />Membre du Mois</h3> <div> </vb:if> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td width="15"> </td> <vb:if condition="$spot_userdata['user_has_pic']"> <td width="{vb:raw vboptions.dbtech_spotlight_max_width}"> <img src="{vb:raw spot_userdata['pic']}" alt="User Image" border="0" style="max-height: {vb:raw vboptions.dbtech_spotlight_max_height}px; max-width: {vb:raw vboptions.dbtech_spotlight_max_width}px;"> </td> <td width="15"> </td> </vb:if> <td width="*"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td colspan="2"> <a href="{vb:raw spot_userdata['userlink']}">{vb:raw spot_userdata['musername']}</a> </td> </tr> <tr> <td> {vb:rawphrase posts}: </td> <td width="15"> </td> <td> <a href="search.php?do=finduser&userid={vb:raw spot_userdata['userid']}&contenttype=vBForum_Post&showposts=1">{vb:raw spot_userdata['posts']}</a> </td> </tr> <tr> <td> {vb:rawphrase threads}: </td> <td width="15"> </td> <td> <a href="search.php?do=finduser&userid={vb:raw spot_userdata['userid']}&starteronly=1&contenttype=vBForum_Thread">{vb:raw spot_userdata['threads']}</a> </td> </tr> <vb:if condition="$spot_userdata['spot_location']"> <tr> <td> {vb:rawphrase field2_title}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['spot_location']} </td> </tr> </vb:if> <vb:if condition="$spot_userdata['spot_occupation']"> <tr> <td> {vb:rawphrase field4_title}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['spot_occupation']} </td> </tr> </vb:if> <vb:if condition="$spot_userdata['show_reputation']"> <tr> <td> {vb:rawphrase reputation}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['reputation']} </td> </tr> </vb:if> <vb:if condition="$spot_userdata['cust_block_data']"> {vb:raw spot_userdata['cust_block_data']} </vb:if> <vb:if condition="$spot_userdata['can_view_forum']"> <tr> <td> {vb:rawphrase dbtech_spot_most_active}: </td> <td width="15"> </td> <td> <a href="forumdisplay.php?f={vb:raw spot_userdata['most_active_id']}">{vb:raw spot_userdata['most_active']}</a> </td> </tr> </vb:if> <tr> <td> {vb:rawphrase last_activity}: </td> <td width="15"> </td> <td> {vb:raw spot_userdata['user_lastdate']} </td> </tr> <vb:if condition="$spot_userdata['spot_signature']"> <tr> <td colspan="3"> {vb:rawphrase signature}:<br /> {vb:raw spot_userdata['spot_signature']} </td> </tr> </vb:if> </table> </td> </tr> </table> <vb:if condition="$use_full_block"> </div> </div> </div> <vb:else /> </div> </div> </vb:if> </tr></table> I need variable with an id to finalize the display and you can modify the information as desired. Pouriez you help me and tell me what I pourai variable use in order to display the information of a desired member That is the idea, so that I can manually change the id and display the desired user username_ID_2 userthread _ID_2 userpost_ID_2 usermostactive_ID_2 userlastvisit_ID_2 Thank you for your help |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|