Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 04-24-2007, 08:39 PM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How can I display thread icons inside the thread?

In the threadbit template, I found this:

PHP Code:
    <if condition="$show['threadicons']">
        <
td class="alt1"><if condition="$show['threadicon']"><img src="$thread[threadiconpath]alt="$thread[threadicontitle]border="0" /><else />&nbsp;</if></td>
    </if> 
But am not really sure how to make that show up in the actual thread itself. Thanks for any ideas.
Reply With Quote
  #2  
Old 04-24-2007, 08:40 PM
EnIgMa1234 EnIgMa1234 is offline
 
Join Date: Mar 2006
Location: .:: Ireland ::.
Posts: 1,306
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

just use the exact same thing in showthread template
Reply With Quote
  #3  
Old 04-24-2007, 10:58 PM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just throwing the html in there won't work because $show['threadicon'] is only set in forumdisplay.php.

If you allow icons for all forums then that is not important to your set-up anyway, in such a case using this in the SHOWTHREAD template will work;

HTML Code:
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
Reply With Quote
  #4  
Old 04-24-2007, 11:16 PM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Brad View Post
Just throwing the html in there won't work because $show['threadicon'] is only set in forumdisplay.php.

If you allow icons for all forums then that is not important to your set-up anyway, in such a case using this in the SHOWTHREAD template will work;

HTML Code:
<img src="$thread[threadiconpath]" alt="$thread[threadicontitle]" border="0" />
Sadly, none of that is apparently set for the SHOWTHREAD template. Here is the actual HTML it generated:

HTML Code:
<!-- Added -->
<img src="" alt="" border="0" />
<!-- Added -->
Any other ideas?
Reply With Quote
  #5  
Old 04-25-2007, 12:00 AM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hehe my bad...didn't know they weren't set in the latest version.

First thing you need to do is edit showthread.php.

Find this bit of code in showthread.php;

PHP Code:
$specialtemplates = array(
    
'smiliecache',
    
'bbcodecache',
    
'mailqueue',
); 
Change it to;

PHP Code:
$specialtemplates = array(
    
'smiliecache',
    
'bbcodecache',
    
'mailqueue',
    
'iconcache'
); 
Now install the attached plug-in and edit the showthread template per the instructions above.
Attached Files
File Type: xml icondata.xml (977 Bytes, 9 views)
Reply With Quote
  #6  
Old 04-25-2007, 12:42 AM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sweet! Thanks man! This is really gonna help my forum. I assume the iconcache HAS to be there tho? No way to do this without file edits?
Reply With Quote
  #7  
Old 04-25-2007, 01:23 AM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by flypaper View Post
Sweet! Thanks man! This is really gonna help my forum. I assume the iconcache HAS to be there tho? No way to do this without file edits?
Yea the iconcache is needed..otherwise the plug-in would not function.

I could probably work around the file edit but it would be a mess...the 'easy' solution in this situation is to edit the file.
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 09:20 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.04229 seconds
  • Memory Usage 2,251KB
  • Queries Executed 14 (?)
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)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_html
  • (3)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (1)postbit_attachment
  • (7)postbit_onlinestatus
  • (7)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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete