Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Threads Description Details »»
Threads Description
Version: 1.0.0.JAN, by TrucLinh TrucLinh is offline
Developer Last Online: Feb 2015 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.8.x Rating:
Released: 12-30-2008 Last Update: 01-12-2009 Installs: 243
DB Changes Uses Plugins Auto-Templates
Additional Files  
No support by the author.

Thread Description


Product features



.
Easy install without edit any template

. Added Thread Description CP (news)

. Added Thread Description maxlength Option (news)

. Added description field to Post Preview New Thread (news)

.
Added description line goes under the thread title in Forumdisplay

. Admin can be turned On\Off threads description per forum


. Show thread description in Show Thread
(update)

. Show thread description in Search Results Show Thread

. Show thread description in Search Results Show Post (update)

. Added description field to Post New Thread

. Added description field to Edit Post Advanced for First Post

. Added description field to Edit Post Preview for First Post

. Added description field to Admin Edit Thread



Screenshots



















. Enjoy!


Version [3.7.x] Thread Description [v1.0.0.JAN]


How to
: (1)

. Change D
efault Thread Desciption to 'Off'
_ Open product-thread_description.xml

find... change '1' to '0'
Quote:
NOT NULL DEFAULT '1'");
next find... change '1' to '0'
Quote:
$forum['descriptiondefault'] = 1;


Update Notes
: (2)


TrucLinh

Download Now

File Type: zip ThreadDescription.1.0.0.JAN.zip (3.7 KB, 1463 views)

Screenshots

File Type: gif threaddescriptioncpol4.gif (15.6 KB, 0 views)
File Type: gif tdsearchresultsqj4.gif (16.1 KB, 0 views)
File Type: gif searchresultsshowpostia5.gif (16.4 KB, 0 views)
File Type: gif editthreadlp5.gif (48.2 KB, 0 views)
File Type: gif editpostdesie0.gif (52.2 KB, 0 views)
File Type: gif editpostpreviewdesvj4.gif (45.4 KB, 0 views)
File Type: gif fftdesov7.gif (8.2 KB, 0 views)

Show Your Support

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

Comments
  #122  
Old 03-15-2010, 06:23 PM
mcyates mcyates is offline
 
Join Date: Jan 2003
Location: Middlesbrough, Cleveland
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'd love to see it in vb4 also. Why didn't the peeps at vbulletin just include this anyway?
Reply With Quote
  #123  
Old 03-26-2010, 03:03 PM
Leica.Robbiani Leica.Robbiani is offline
 
Join Date: Sep 2007
Location: South Germany
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi there,

Ok, I got this one work on vb4.0.2, just a hard way.

After installation I disabled all plugins with the hook global_start, because they're throwing warnings to use the class vB_Template instead of fetch_template(). I'm not savvy enough how to do this, it seems to be very tricky.

After disabling the plugins I did the template edits manually, as they must be edited the templates threadbit, showthread, search_results_postbit, newthread, editpost, threadadmin_editthread.

As an example for the threadbit template:

Just look for the place where you want the template edit have, I would have the thread description under the thread title. So the place to search in threadbit was:

PHP Code:
<class="title<vb:if condition="$show['gotonewpost']"> threadtitle_unread</vb:if>" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo}, 'threadid', 'threadtitle'}" id="thread_title_{vb:raw thread.realthreadid}">{vb:raw thread.threadtitle}</a>
                </
h3
After this I added:

PHP Code:
<if condition="$vboptions[description_active]"><vb:if condition="$thread[description] != ''">
<
span><i>{vb:var thread.description}</i></span><br />
</
vb:if></vb:if> 
It's a little code reading for do it in all the templates, but it works for me. Don't worry, death is also not for free, it takes life.

L.R.
Reply With Quote
  #124  
Old 03-27-2010, 11:02 AM
RvG2 RvG2 is offline
 
Join Date: Jan 2007
Posts: 457
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

should be by default on vB 4
Reply With Quote
  #125  
Old 06-05-2010, 05:11 AM
lordnara lordnara is offline
 
Join Date: Sep 2007
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by davew View Post
I'd love to see this for VB4 too please
Quote:
Originally Posted by Welshy2008 View Post
Me too, I would like to continue using this Fab Mod on vB4.0.2 too.
Quote:
Originally Posted by mcyates View Post
I'd love to see it in vb4 also. Why didn't the peeps at vbulletin just include this anyway?
Quote:
Originally Posted by RvG2 View Post
should be by default on vB 4
count me in



Quote:
Originally Posted by Leica.Robbiani View Post
Hi there,

Ok, I got this one work on vb4.0.2, just a hard way.

After installation I disabled all plugins with the hook global_start, because they're throwing warnings to use the class vB_Template instead of fetch_template(). I'm not savvy enough how to do this, it seems to be very tricky.

After disabling the plugins I did the template edits manually, as they must be edited the templates threadbit, showthread, search_results_postbit, newthread, editpost, threadadmin_editthread.

As an example for the threadbit template:

Just look for the place where you want the template edit have, I would have the thread description under the thread title. So the place to search in threadbit was:

PHP Code:
<class="title<vb:if condition="$show['gotonewpost']"> threadtitle_unread</vb:if>" href="{vb:link thread, {vb:raw thread}, {vb:raw pageinfo}, 'threadid', 'threadtitle'}" id="thread_title_{vb:raw thread.realthreadid}">{vb:raw thread.threadtitle}</a>
                </
h3
After this I added:

PHP Code:
<if condition="$vboptions[description_active]"><vb:if condition="$thread[description] != ''">
<
span><i>{vb:var thread.description}</i></span><br />
</
vb:if></vb:if> 
It's a little code reading for do it in all the templates, but it works for me. Don't worry, death is also not for free, it takes life.

L.R.
thanks mate, i'll try it
Reply With Quote
  #126  
Old 06-09-2010, 12:54 PM
longgsm longgsm is offline
 
Join Date: Dec 2007
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by jaryx View Post
Mod begin work on the next day?

Installed and now not work for me.
Mod active but:
- New Thread - I don't see any Description
- Edit - I see Description, but when I edit & save... nothing saves. Reply Edit = Description is empty.

Default or modifed style not matter - not works

vb382 + vbseo330
Fix it ok:

Forums & Moderators/Forum manager/Choose Forum ID need show description then save again --> show ok
Reply With Quote
  #127  
Old 06-11-2010, 07:43 PM
marshal_ramdev marshal_ramdev is offline
 
Join Date: Mar 2009
Location: Ludhiana
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks
Reply With Quote
  #128  
Old 07-12-2010, 09:50 PM
cspielman cspielman is offline
 
Join Date: Mar 2010
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a version of this mod for vb 4.0.x?

And Can it show more than one line of the thread description?
Reply With Quote
  #129  
Old 07-14-2010, 06:37 PM
Alecsmith Alecsmith is offline
 
Join Date: Sep 2009
Location: Still On Earth
Posts: 217
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

excellent work

A modification i was looking for
Reply With Quote
  #130  
Old 07-14-2010, 06:59 PM
cspielman cspielman is offline
 
Join Date: Mar 2010
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a version of this for vb 4.0.x? Not being able to show thread description along with thread started is truly annoying.
Reply With Quote
  #131  
Old 10-07-2010, 02:53 PM
Montecristo Montecristo is offline
 
Join Date: Oct 2008
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

any version for 4.0.7?????? For me no works............ ;=(
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 04:26 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.05778 seconds
  • Memory Usage 2,367KB
  • Queries Executed 28 (?)
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_php
  • (8)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
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (8)postbit_attachment
  • (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_postinfo_query
  • fetch_postinfo
  • 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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete