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

Reply
 
Thread Tools
Forum Category Icons (Advanced) Details »»
Forum Category Icons (Advanced)
Version: 2.0.0, by Dark_Wizard Dark_Wizard is offline
Developer Last Online: Jun 2014 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 4.x.x Rating:
Released: 06-09-2010 Last Update: 08-04-2011 Installs: 1063
DB Changes Uses Plugins Template Edits Auto-Templates
 
No support by the author.

This is a hack that will add icons to your forum categories on the forum home page.

History: I was the originator of this hack back in the vBulletin 1.x days and continued this in vb 3.7.x. I have had numerous requests to port this to vb 4.x.x so here you are.

Please click install if you want support for this mod and to encourage me to continue adding features!

Enjoy!

You can find nice icons here, here and here.

Thanks to LatinoCheats for this link.

Changelogs:

1.2.0:
  • * Option to change icon location i.e. After Status Icon, Under Forum Title or Replace Status Icon.
    * Now contains a dropdown listing your icons in the folder so you just select and save.
    * Displays icon in forum manager when editing a forum that contains an icon.
    * Change icon width and height so you need to only upload one size icon.
    * Set icon position so you can center the icon when using smaller icons.
    * Dropdown of transparency settings for icons used to replace status icons when indicating "Old Posts".
    * Allows you to mark forum/subforum as read.
    * Now shows locked icons (lock icon added to download and this overlays the status icons when indicating a locked forum).

1.2.1:
  • * Now works for Mark Forum/SubForum as read!

1.2.2:
  • * Fixed: template bug.
    * Added: Now shows locked icons (lock icon added to download and this overlays the status icons when indicating a locked forum.)

1.2.3:
  • * Added: Automatic Template Edits!
    * Added: Only jpg, gif and png icons allowed. (extensions checked in forum edit).
    * Fixed: Mark Forum Read for specific forum/subforum.
    * Fixed: Now shows non-transparent status icon when "Show Locks" is enabled.

1.2.4:
  • * Fixed: Users Viewing. (This is working on a default vb style, others styles may have issues)
    * Fixed: Mark Read should now be fixed, working fine on my end.
    * Fixed: Icon not appearing when "Forum Description" disabled.

2.0.0
  • * Icon size can be set either globally or set per forum, setting is in vb options.
    * When selecting an icon in forum manager the selected icon now shows to the right of the dropdown so you can see what you are selecting.
    * If your upgrading from 1.2.4 and had to do manual template edits then you will need to revert the templates and redo the edits.

Upgrades: For those upgrading just make sure when you import the product you select "Allow Overwrite". You will also need to revert your templates (only for users of version 1.2.2 or earlier) and then follow the instructions as outlined in the install.html file.

Note: Before you ask, yes this works with all browsers. (Tested on FF, IE8, IE7, Chrome, Safari and Opera)

IMPORTANT! If you use the "Auto Template" feature of this mod and it doesn't work then you MUST do the manual template edits outlined in the install.html. This plugin was created using a default vbulletin style.

If you like this mod than please nominate for "MOTM".

Donations are gladly accepted!

Download Now

File Type: zip forumcategoryicons_1.2.4.zip (10.6 KB, 3493 views)
File Type: zip forumcategoryicons_2.0.0.zip (11.2 KB, 6324 views)

Screenshots

File Type: jpg select_icon.jpg (15.9 KB, 0 views)
File Type: jpg forum_edit.jpg (15.1 KB, 0 views)
File Type: png after_status.png (25.0 KB, 0 views)
File Type: png title.png (11.6 KB, 0 views)
File Type: png status.png (12.4 KB, 0 views)
File Type: png status1.png (13.2 KB, 0 views)
File Type: jpg options.jpg (104.5 KB, 0 views)
File Type: png lock.png (13.3 KB, 0 views)

Show Your Support

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

Comments
  #762  
Old 10-26-2013, 06:33 PM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you
Reply With Quote
  #763  
Old 10-27-2013, 06:15 AM
LuisUrquilla's Avatar
LuisUrquilla LuisUrquilla is offline
 
Join Date: Jul 2012
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've been looking for something like this for ages. Thank you!! How is it that this never made it to Mod of the Month?
Reply With Quote
  #764  
Old 10-28-2013, 11:39 AM
ikymbo's Avatar
ikymbo ikymbo is offline
 
Join Date: May 2012
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slipperyduck View Post
vBulletin 4.2.2

When in the Admin panel I get the following:


Warning: Function eregi() is deprecated in ..../adminpanel/forum.php(248) : eval()'d code on line 12

^ I get one Warning for every icon created, ie. I have 19 Warnings and have 19 custom Icons

----------------------------------------------------------------------------------------------------------------------------------
I'm assuming its the Plugin Template : Forum Category Icons [Forum Manager Edit]

if($image != ".." && $image != "." && $image != "lock.png" && (eregi('\.(jpg|gif|png)$', $image)))

^ where the eregi function is depreciated?

I've changed mine to the following and it seems to work (I'm assuming - don't see a problem yet):

if($image != ".." && $image != "." && $image != "lock.png" && (preg_match('/\.(jpg|gif|png)$/i', $image)))

Work , thanks you bro !
Reply With Quote
  #765  
Old 11-02-2013, 05:36 PM
mikez006 mikez006 is offline
 
Join Date: Mar 2008
Posts: 105
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

for people having issues with icons not showing up on subforums

open product-forumcategoryicons.xml

Find
$vbulletin->templatecache['forumhome_forumbit_level1_post'] = str_replace($find1, $replace, $vbulletin->templatecache['forumhome_forumbit_level1_post']);

Change "find1" to "find". Save, reupload and it'll work.
Reply With Quote
  #766  
Old 11-22-2013, 07:18 AM
onfranco onfranco is offline
 
Join Date: Sep 2010
Location: Italy
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi . i have a problem with icon in sub forum . i dont know to solve the problem

icon ok in forum http://www.ricercaprofessionista.com/forum.php

but in sub forum not appears icons http://www.ricercaprofessionista.com...php?2-Economia

help me please

thx
Reply With Quote
  #767  
Old 11-22-2013, 08:09 AM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please read through the thread, that subject has been covered a few times.
Reply With Quote
  #768  
Old 11-23-2013, 03:41 PM
billstelling's Avatar
billstelling billstelling is offline
 
Join Date: Apr 2011
Posts: 246
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What about here?
Code:
	$find1 = trim(preg_replace('#^\$final_rendered = 

\'(.*)\';$#s', '\\1', compile_template('<img src="{vb:stylevar imgdir_statusicon}/{vb:raw 

forum.imageprefix}forum_{vb:raw forum.statusicon}-48.png" class="forumicon" 

id="forum_statusicon_{vb:raw forum.forumid}" alt="" />
Reply With Quote
  #769  
Old 11-23-2013, 07:51 PM
billstelling's Avatar
billstelling billstelling is offline
 
Join Date: Apr 2011
Posts: 246
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dark_Wizard View Post
Nice idea...not sure how to implement it since developers that design skins, styles etc...put their status icons into different locations i.e. images/skin name/statusicon or cpstyles/skin name/statusicon. There is no consistency....
Anyone else looking for this feature?

I am.. I run multiple themes and it would be nice to see it call to a specific theme. Being able to set by theme would be a big plus. Also, would it be possible to code it so we can use it the same as the stock setup were you have forum_new-48 and forum_old-48.. I know I will get some +++++ing if they "cant tell if the forum has new posts or not.

Setting icon padding per forum would be nice as well, we can do size now but no way to center them all independently if using different sizes without coding it in manually. No biggy really, but it would be a nice addition to the mod.

Quote:
Originally Posted by Dark_Wizard View Post
One way is to move the icons to a folder under the statusicon folder and then set it in the forum manager per style/skin...let me think on this a bit.
I did that for it to make it easy for staff to do them without ftp. I use the icons folder for it and created a sub folder for them and other graphics. Works great doing it that way, being able to set for staff to up smilies opened the door to be able to do it with all graphics. All you have to do is edit for the path in the templates.

As the design admin for them I did not have ftp access(only the main site team has access) so I had to come up with a way to up graphics without having to bug the head office all the time. I did this theme using the icons folder for pretty much all its graphics. Most of the others I had already created before I updated the site to vb4 so only a few refinements for them there..

Reply With Quote
  #770  
Old 11-25-2013, 06:41 AM
onfranco onfranco is offline
 
Join Date: Sep 2010
Location: Italy
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no, dont work icon is sub forum .

this is ok = http://www.ricercaprofessionista.com/forum.php

this is not ok = http://www.ricercaprofessionista.com...php?2-Economia

www.ricercaprofessionista.com

i see other template modification in yours last post but dont do nothing
Reply With Quote
  #771  
Old 11-25-2013, 02:29 PM
billstelling's Avatar
billstelling billstelling is offline
 
Join Date: Apr 2011
Posts: 246
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works fine for me. The bottom 2 are the default vB as I have yet to create a graphic for those categories yet.

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:57 AM.


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.06379 seconds
  • Memory Usage 2,384KB
  • Queries Executed 26 (?)
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)bbcode_code
  • (3)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
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (23)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (10)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_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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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