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

Reply
 
Thread Tools
Icons for UserCP Navigation 1.2 Details »»
Icons for UserCP Navigation 1.2
Version: 1.2.2, by demgel demgel is offline
Developer Last Online: Apr 2013 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.7.x Rating:
Released: 02-14-2008 Last Update: 06-14-2008 Installs: 965
Uses Plugins Auto-Templates
Re-useable Code Additional Files  
No support by the author.

Icons for UserCP Navigation 1.2.2

This mod adds a pretty group of icons (Silk Icons) to your usercp navigation bar items.

Example Collapsed:



Example Expanded:



Install Instructions:

Installation for White Styles (Like vB Default Style)
1. Upload the "usercp_icons" folder into your current style images/misc dir.
2. Import product-iconsusercp.xml in the Product Manager.
3. That's all

Installation for Dark Styles (PNG Icons with Transparency)
1. Upload the "usercp_icons_png" folder into your current style images/misc dir.
2. Import product-iconsusercp-png.xml in the Product Manager.
3. That's all

IMPORTANT: These PNG icons will not display correctly if you're using Internet Explorer 5.5 or 6. For fix this transparency issue check this mod by Oblivion Knight:

? PNG Transparency for Internet Explorer:
https://vborg.vbsupport.ru/showthread.php?t=94416


Version History:

1.1:
- Added automatic template insertion.
- Fixed compability width with vBulletin Project Tools Item.
- Fixed compability width with vBulletin Blog Item.

1.2:
- Added collapsable option to items.
- Private Messages Item modified, no menu.
- Subscriptions Item modified, no menu.

1.2.1:
- Minor changes in shell template (missing &nbsp.
- Added blank html file in the icons dir.

1.2.2:
- Added PNG icons for Dark Styles. (Thanks to hcmagix for the idea).
- Added version checking.

?Tested on vBulletin 3.7.1!

Show Your Support

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

Comments
  #102  
Old 05-14-2008, 08:58 PM
slyreptile slyreptile is offline
 
Join Date: Feb 2007
Location: Arizona
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Beautiful. I love pngs! Thanks for the mod!
Reply With Quote
  #103  
Old 05-21-2008, 02:10 PM
Super Jinni Super Jinni is offline
 
Join Date: Mar 2008
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok, I have a problem

two icons are missing

sent items and show all in the subscribed threads

any idea about how to fix that?

thank you for the nice job
Reply With Quote
  #104  
Old 05-22-2008, 12:26 AM
odeezie odeezie is offline
 
Join Date: Jan 2008
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice work!!! Thank You. Just a quick question:


I have a couple other hacks that will not show up when this one is enabled. They are:

Extra Profile Fields Page
https://vborg.vbsupport.ru/showthread.php?t=179989

and

Favorite Smilies
https://vborg.vbsupport.ru/showthrea...vorite+smilies

What can I do to get these to show up when I have your icons installed?
Reply With Quote
  #105  
Old 05-22-2008, 03:08 AM
goddess_dix's Avatar
goddess_dix goddess_dix is offline
 
Join Date: Mar 2007
Location: Kansas
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by odeezie View Post
I have a couple other hacks that will not show up when this one is enabled. They are:
Favorite Smilies
https://vborg.vbsupport.ru/showthrea...vorite+smilies

What can I do to get these to show up when I have your icons installed?
ok, i can't help with the first one because i don't have it (other than you'll have to transfer any template edits required for the usercp_shell template to the usercp_shell_icons template instead.

for the favorite smiles, take this icon attached, and upload it to the same folder as the rest of your cp icons (images/misc/usercp_icons/)

in your usercp_shell_icons template, find this text
Code:
<if condition="$show['profilepiclink']">
 <tr><td class="$navclass[profilepic]" nowrap="nowrap">
  <table border="0" cellspacing="0" cellpadding="0">
   <tr>
    <td width="20">
  <img border="0" src="$stylevar[imgdir_misc]/usercp_icons/picture_edit.png" width="16" height="16"></td>
    <td><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a></td>
   </tr>
  </table>
  </td></tr>
 </if>
after it, add this -
Code:
<!-- favorite smilies -->
<if condition="$vbulletin->options['favsmiliesactive'] AND ($permissions['favsmiliepermissions'] & $vbulletin->bf_ugp_favsmiliepermissions['canusefavsmilies'])">
<tr><td class="$navclass[customize]" nowrap="nowrap">
  <table border="0" cellspacing="0" cellpadding="0">
   <tr>
<td width="20"><img border="0" src="$stylevar[imgdir_misc]/usercp_icons/favoritesmilies.gif" width="16" height="16"></td> <td><a class="smallfont" href="misc.php?$session[sessionurl]do=editfavsmilies">$vbphrase[edit_favorite_smilies]
</a></td>
   </tr>
  </table>
  </td></tr>
 </if>
<!-- / favorite smilies -->
if you have the fine template modification system hack installed, you may use the xml from my edits to do this automagically!

and on the question for using this with princeton's hack, no, you can't, but you CAN continue to use the dropdown cp menu with the product disabled as long as you keep the template edits that call the script for the dropdown in your navbar.

hope that helps!
Reply With Quote
  #106  
Old 05-22-2008, 08:37 AM
elmstr elmstr is offline
 
Join Date: Dec 2004
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks a lot. That solved the problems.

Great work! Just love your hack!
Reply With Quote
  #107  
Old 05-22-2008, 03:23 PM
odeezie odeezie is offline
 
Join Date: Jan 2008
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by goddess_dix View Post
ok, i can't help with the first one because i don't have it (other than you'll have to transfer any template edits required for the usercp_shell template to the usercp_shell_icons template instead.

for the favorite smiles, take this icon attached, and upload it to the same folder as the rest of your cp icons (images/misc/usercp_icons/)

in your usercp_shell_icons template, find this text
Code:
<if condition="$show['profilepiclink']">
 <tr><td class="$navclass[profilepic]" nowrap="nowrap">
  <table border="0" cellspacing="0" cellpadding="0">
   <tr>
    <td width="20">
  <img border="0" src="$stylevar[imgdir_misc]/usercp_icons/picture_edit.png" width="16" height="16"></td>
    <td><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a></td>
   </tr>
  </table>
  </td></tr>
 </if>
after it, add this -
Code:
<!-- favorite smilies -->
<if condition="$vbulletin->options['favsmiliesactive'] AND ($permissions['favsmiliepermissions'] & $vbulletin->bf_ugp_favsmiliepermissions['canusefavsmilies'])">
<tr><td class="$navclass[customize]" nowrap="nowrap">
  <table border="0" cellspacing="0" cellpadding="0">
   <tr>
<td width="20"><img border="0" src="$stylevar[imgdir_misc]/usercp_icons/favoritesmilies.gif" width="16" height="16"></td> <td><a class="smallfont" href="misc.php?$session[sessionurl]do=editfavsmilies">$vbphrase[edit_favorite_smilies]
</a></td>
   </tr>
  </table>
  </td></tr>
 </if>
<!-- / favorite smilies -->
if you have the fine template modification system hack installed, you may use the xml from my edits to do this automagically!

and on the question for using this with princeton's hack, no, you can't, but you CAN continue to use the dropdown cp menu with the product disabled as long as you keep the template edits that call the script for the dropdown in your navbar.

hope that helps!
Thank You!!

I just installed the TMS system....where do I put the xml file you provided?

I did the manual template edits though and it works wonderfully!! Thank You so much.
Reply With Quote
  #108  
Old 05-22-2008, 09:07 PM
jw00dy's Avatar
jw00dy jw00dy is offline
 
Join Date: Dec 2004
Location: Utah
Posts: 250
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice touch! Thank you!
Reply With Quote
  #109  
Old 05-23-2008, 02:30 PM
Galeon Galeon is offline
 
Join Date: Apr 2004
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed. Thank you
How to make Usercp column wider?
Reply With Quote
  #110  
Old 05-23-2008, 07:23 PM
piloto-43 piloto-43 is offline
 
Join Date: Sep 2007
Location: javland
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice touch, nice mod
Reply With Quote
  #111  
Old 05-25-2008, 12:04 AM
Arbit3r Arbit3r is offline
 
Join Date: Dec 2007
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This should come with vb 3.7!

Good job
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 12:41 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.05877 seconds
  • Memory Usage 2,329KB
  • Queries Executed 27 (?)
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_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete