vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Giving Stickies their own status icon (https://vborg.vbsupport.ru/showthread.php?t=223359)

Blind Dragon 09-16-2009 07:44 PM

Giving Stickies their own status icon
 
So I want to give stickied threads a different icon than normal threads and closed threads. Not so hard...

My problem is, I need it to be conditional on if the thread is a sticky, then use the sticky icon, if the thread is not a sticky, then use normal thread icons.

Here's where I am at - the sticky icon shows, but it shows along with the normal icon showing closed thread or new post ect instead of replacing it:

This is the threadbit template (is there somewhere else they have conditionals for when to use one threadicon or another ?)

HTML Code:

<tr>
        <td class="alt1" id="td_threadstatusicon_$thread[realthreadid]">
                $thread[openclose_editable]
<if condition="$show['sticky']">
<img src="$stylevar[imgdir_statusicon]/stickyicon.gif" alt="$vbphrase[sticky_thread]" /></if>
                <else /><img src="$stylevar[imgdir_statusicon]/thread$thread[statusicon].gif" id="thread_statusicon_$thread[realthreadid]" alt="<if condition="$show['threadcount']"><phrase 1="$thread[dot_count]" 2="$thread[dot_lastpost]">$vbphrase[have_x_posts_in_thread_last_y]</phrase></if>" border="" />
        </td>

I figured the if/else statement would mean if condition 1 is not met then use condition 2

or if the thread is not a sticky then use [statusicon].gif

If you need to see and example of what I am talking about:
http://www.tech-101.com/windows/

TimberFloorAu 09-16-2009 09:09 PM

Love to help, but why link to something with VIRUS lol... in title.

Usually its just a case of appending the sticky image.

Blind Dragon 09-16-2009 09:23 PM

Wow - I didn't even think about that title scaring people - just our virus removal forums have the most stickies

I changed link to our windows forums.

TimberFloorAu 09-16-2009 09:35 PM

K so you want a STATUS ICON for sticky ? hmmmm if thats the case good question.

Surely that isnt too hard.

Isnt the code to display the gif:

<div> <span style="float:right"> <img class="inlineimg" src="http://www.anyforum.com/forum/images/styles/MyStyle/misc/sticky.gif" alt="Sticky Thread" /> </span>

So wouldnt you just need to amend the code within :

threadbit

Code:

<if condition="$show['sticky']"> <img class="inlineimg" src="$stylevar[imgdir_misc]/sticky.gif" alt="$vbphrase[sticky_thread]" /> </if>
And move this within the statusicon bit ?

somewhere around here :

Code:

<tr class="$rowClass">
        <td id="td_threadstatusicon_$thread[realthreadid]">
                $thread[openclose_editable]
                <img src="$stylevar[imgdir_statusicon]/thread$thread[statusicon].gif" id="thread_statusicon_$thread[realthreadid]" alt="<if condition="$show['threadcount']"><phrase 1="$thread[dot_count]" 2="$thread[dot_lastpost]">$vbphrase[have_x_posts_in_thread_last_y]</phrase></if>" border="" />
        </td>


Blind Dragon 09-16-2009 10:17 PM

Not exactly.

I don't want to change the sticky status icon.

I am looking to add a thread status icon for stickies - which is non existent by default.

By default, when you stick a thread - it shows either hot topic, closed topic, or new topic, ect for a thread status icon.

I want it to show the icon that I create, which it does.. but it also shows the other icon

===========================


All times are GMT. The time now is 02:47 AM.

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.01969 seconds
  • Memory Usage 1,732KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete