Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
Today's active recent threads Details »»
Today's active recent threads
Version: 4.00, by BlackThorn BlackThorn is offline
Developer Last Online: Jun 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.0.6 Rating:
Released: 08-01-2010 Last Update: 10-01-2010 Installs: 41
Uses Plugins Auto-Templates
Translations  
No support by the author.

Removed.

Supporters / CoAuthors

Show Your Support

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

Comments
  #2  
Old 08-02-2010, 04:06 PM
BlackThorn BlackThorn is offline
 
Join Date: Aug 2009
Posts: 581
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Reserved.
Reply With Quote
  #3  
Old 08-02-2010, 11:20 PM
sulasno sulasno is offline
 
Join Date: Feb 2010
Posts: 588
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tagged and thanks
Reply With Quote
  #4  
Old 08-03-2010, 12:57 AM
BLUELAWIN BLUELAWIN is offline
 
Join Date: Dec 2009
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do you change the poster's avatar to plain poster's name showing in text to save space?

Nice one. Installed!
Reply With Quote
  #5  
Old 08-03-2010, 01:50 AM
BlackThorn BlackThorn is offline
 
Join Date: Aug 2009
Posts: 581
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BLUELAWIN View Post
How do you change the poster's avatar to plain poster's name showing in text to save space?

Nice one. Installed!
Thanks man, well open bts_recentxposts_bit template and all codes replace with;

PHP Code:
  <tr>
<
td class="blocksubhead"><a href="member.php?{vb:raw session.sessionurl}u={vb:raw getposts_thread.userid}">{vb:raw getposts_thread.musername}</a></td>
<
td class="blocksubhead">
<
vb:if condition="$getposts_thread[newpost]">
<
a href="showthread.php?{vb:raw session.sessionurl}goto=newpost&amp;t={vb:raw getposts_thread.threadid}" id="thread_gotonew_{vb:raw getposts_thread.realthreadid}"><img class="inlineimg" src="images/statusicon/post_new.gif" alt="{vb:rawphrase go_to_first_new_post}" border="0" /></a></vb:if>
{
vb:raw getposts_thread.prefix_rich
<
a href="showthread.php?{vb:raw session.sessionurl}t={vb:raw getposts_thread.threadid}{vb:raw getposts_thread.highlight}" id="thread_title_{vb:raw getposts_thread.realthreadid}"<vb:if condition="$getposts_thread[newpost]"style="font-weight:bold"</vb:if> title="{vb:raw getposts_thread.titletrimmed}">{vb:raw getposts_thread.titletrimmed}</a>
</
td>
<
td class="blocksubhead"><a href="forumdisplay.php?{vb:raw session.sessionurl}f={vb:raw getposts_thread.forumid}">{vb:raw getposts_thread.forumtitle}</a>
</
td>
<
td class="blocksubhead" align="center">
{
vb:raw getposts_thread.lastpostdate
<
vb:if condition="!$show['detailedtime']">
{
vb:raw getposts_thread.lastposttime}</vb:if>
</
td>
<
td class="blocksubhead" align="center">
<
a href="misc.php?do=whoposted&amp;t={vb:raw getposts_thread.threadid}" onclick="who({vb:raw getposts_thread.threadid}); return false;">
{
vb:raw getposts_thread.replycount}</a>
</
td
Save and exit it will be okay then.
Reply With Quote
  #6  
Old 08-03-2010, 08:30 AM
BLUELAWIN BLUELAWIN is offline
 
Join Date: Dec 2009
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BlackThorn View Post
Thanks man, well open bts_recentxposts_bit template and all codes replace with;

PHP Code:
  <tr>
<
td class="blocksubhead"><a href="member.php?{vb:raw session.sessionurl}u={vb:raw getposts_thread.userid}">{vb:raw getposts_thread.musername}</a></td>
<
td class="blocksubhead">
<
vb:if condition="$getposts_thread[newpost]">
<
a href="showthread.php?{vb:raw session.sessionurl}goto=newpost&amp;t={vb:raw getposts_thread.threadid}" id="thread_gotonew_{vb:raw getposts_thread.realthreadid}"><img class="inlineimg" src="images/statusicon/post_new.gif" alt="{vb:rawphrase go_to_first_new_post}" border="0" /></a></vb:if>
{
vb:raw getposts_thread.prefix_rich
<
a href="showthread.php?{vb:raw session.sessionurl}t={vb:raw getposts_thread.threadid}{vb:raw getposts_thread.highlight}" id="thread_title_{vb:raw getposts_thread.realthreadid}"<vb:if condition="$getposts_thread[newpost]"style="font-weight:bold"</vb:if> title="{vb:raw getposts_thread.titletrimmed}">{vb:raw getposts_thread.titletrimmed}</a>
</
td>
<
td class="blocksubhead"><a href="forumdisplay.php?{vb:raw session.sessionurl}f={vb:raw getposts_thread.forumid}">{vb:raw getposts_thread.forumtitle}</a>
</
td>
<
td class="blocksubhead" align="center">
{
vb:raw getposts_thread.lastpostdate
<
vb:if condition="!$show['detailedtime']">
{
vb:raw getposts_thread.lastposttime}</vb:if>
</
td>
<
td class="blocksubhead" align="center">
<
a href="misc.php?do=whoposted&amp;t={vb:raw getposts_thread.threadid}" onclick="who({vb:raw getposts_thread.threadid}); return false;">
{
vb:raw getposts_thread.replycount}</a>
</
td
Save and exit it will be okay then.



I installed this and everything works ok but the number of views are not showing, its all blacked out. Do you have any fix for this?

Thanks.
Reply With Quote
  #7  
Old 08-03-2010, 09:40 AM
wayne.richards@ wayne.richards@ is offline
 
Join Date: Jul 2008
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great Mod, Is there a way to put this at the top above the forums?
Reply With Quote
  #8  
Old 08-03-2010, 09:46 AM
BlackThorn BlackThorn is offline
 
Join Date: Aug 2009
Posts: 581
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BLUELAWIN View Post
I installed this and everything works ok but the number of views are not showing, its all blacked out. Do you have any fix for this?

Thanks.
Ops sorry for that then well, open the same template and all codes replace with;

PHP Code:
  <tr>
<
td class="blocksubhead"><a href="member.php?{vb:raw session.sessionurl}u={vb:raw getposts_thread.userid}">{vb:raw getposts_thread.musername}</a></td>
<
td class="blocksubhead">
<
vb:if condition="$getposts_thread[newpost]">
<
a href="showthread.php?{vb:raw session.sessionurl}goto=newpost&amp;t={vb:raw getposts_thread.threadid}" id="thread_gotonew_{vb:raw getposts_thread.realthreadid}"><img class="inlineimg" src="images/statusicon/post_new.gif" alt="{vb:rawphrase go_to_first_new_post}" border="0" /></a></vb:if>
{
vb:raw getposts_thread.prefix_rich
<
a href="showthread.php?{vb:raw session.sessionurl}t={vb:raw getposts_thread.threadid}{vb:raw getposts_thread.highlight}" id="thread_title_{vb:raw getposts_thread.realthreadid}"<vb:if condition="$getposts_thread[newpost]"style="font-weight:bold"</vb:if> title="{vb:raw getposts_thread.titletrimmed}">{vb:raw getposts_thread.titletrimmed}</a>
</
td>
<
td class="blocksubhead"><a href="forumdisplay.php?{vb:raw session.sessionurl}f={vb:raw getposts_thread.forumid}">{vb:raw getposts_thread.forumtitle}</a>
</
td>
<
td class="blocksubhead" align="center">
{
vb:raw getposts_thread.lastpostdate
<
vb:if condition="!$show['detailedtime']">
{
vb:raw getposts_thread.lastposttime}</vb:if>
</
td>
<
td class="blocksubhead" align="center">
<
a href="misc.php?do=whoposted&amp;t={vb:raw getposts_thread.threadid}" onclick="who({vb:raw getposts_thread.threadid}); return false;">
{
vb:raw getposts_thread.replycount}</a>
</
td
<
td class="blocksubhead" align="center">
{
vb:raw getposts_thread.views}
</
td>
</
tr
Save and exit, then it will be okay.
Reply With Quote
  #9  
Old 08-03-2010, 09:52 AM
BlackThorn BlackThorn is offline
 
Join Date: Aug 2009
Posts: 581
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by wayne.richards@ View Post
Great Mod, Is there a way to put this at the top above the forums?
This mod is only work the bottom of the forums but may be I can make that for vB4.1.x version OR ummm.... Well, I'll look at that 1-2 day after. If I make it, then I'll send update details man. Thanks and Best regards,
Reply With Quote
  #10  
Old 08-03-2010, 10:15 AM
wayne.richards@ wayne.richards@ is offline
 
Join Date: Jul 2008
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cheers Buddy!
Reply With Quote
Reply

Thread Tools

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 07:23 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.07970 seconds
  • Memory Usage 2,339KB
  • 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
  • (3)bbcode_php
  • (4)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
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)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