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
  #172  
Old 08-06-2008, 10:00 PM
MonkYZ MonkYZ is offline
 
Join Date: Jul 2008
Posts: 334
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Super great addon. But, how in the world can i make it work with this one: https://vborg.vbsupport.ru/showthread.php?t=177774
I mean, after installing both, my icons simply dissapear... and i like them both. Can you please give me a step by step guide to make them work together ?

Thx in advance !
Reply With Quote
  #173  
Old 08-07-2008, 12:33 AM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes. Great idea but it clashes with a few other add-ons which are more important to me.
Reply With Quote
  #174  
Old 08-08-2008, 10:19 AM
masterweb's Avatar
masterweb masterweb is offline
 
Join Date: Aug 2007
Location: Italy
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Intalled on just 30 seconds and working great!!!, thanks a lot for sharing this.
Reply With Quote
  #175  
Old 08-08-2008, 10:15 PM
jwashburn jwashburn is offline
 
Join Date: Apr 2006
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you use Zoints Local you need to weak a few things to make this work. I apologize if I am speaking out of turn and if so please delete this post.

This is what i did

find

Code:
<tr><td class="$navclass[profile]" nowrap="nowrap">
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="20"><img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/user_edit.png" width="16" height="16"></td>
				<td><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofile">
				$vbphrase[edit_your_details]</a></td>
			</tr>
		</table>
		</td></tr>
right below that add this


Code:
<!-- Zoints Edit Start -->
	<tr><td class="$navclass[options]" nowrap="nowrap">
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="20">
		<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/user_edit.png" width="16" height="16"></td>
				<td>
				<a class="smallfont" href="$vboptions[zointsprofile_zurl]?id=$bbuserinfo[userid]">Edit Profile</a></td>
			</tr>
		</table>
		</td></tr>
	<tr><td class="$navclass[options]" nowrap="nowrap">
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="20">
		<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/group.png" width="16" height="16"></td>
				<td>
				<a class="smallfont" href="$vboptions[zointsprofile_zurl]?id=$bbuserinfo[userid]&amp;g=contacts">Your Network</a></td>
			</tr>
		</table>
		</td></tr>

<tr><td class="$navclass[options]" nowrap="nowrap">
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="20">
		<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/picture_edit.png" width="16" height="16"></td>
				<td>
				<a class="smallfont" href="$vboptions[zointsprofile_zurl]?id=$bbuserinfo[userid]&amp;g=privacy">Edit Profile Privacy</a></td>
			</tr>
		</table>
		</td></tr>
	<tr><td class="$navclass[options]" nowrap="nowrap">
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="20">
		<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/blocked_members.png" width="16" height="16"></td>
				<td>
				<a class="smallfont" href="$vboptions[zointsprofile_zurl]/z.php?cmd=blocked">Blocked Members</a></td>
			</tr>
		</table>
		</td></tr>
<tr><td class="$navclass[options]" nowrap="nowrap">
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="20">
		<img border="0" src="$stylevar[imgdir_misc]/usercp_icons_png/vcard_edit.png" width="16" height="16"></td>
				<td>
				<a class="smallfont" href="$vboptions[zointsprofile_zurl]/z.php?cmd=notification-preferences">Edit Profile Notifications</a></td>
			</tr>
		</table>
		</td></tr> 
<!-- Zoints Edit End-->
Then i reccomend commenting out the the old profile settings so you can reset it if you need it later

Code:
<!--	<if condition="$show['customizelink']">
	<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_png/vcard_edit.png" width="16" height="16"></td>
				<td>
				<a class="smallfont" href="profile.php?$session[sessionurl]do=customize">
				$vbphrase[customize_profile]</a></td>
			</tr>
		</table>
		</td></tr>
	</if>
	<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_png/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> -->
Reply With Quote
  #176  
Old 08-08-2008, 11:36 PM
anderow anderow is offline
 
Join Date: Jun 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Superb!

Thanks mate. Worked a treat!
Reply With Quote
  #177  
Old 08-09-2008, 07:53 AM
Salar Salar is offline
 
Join Date: Jun 2005
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

do not work!! can't see any gif icon!
Reply With Quote
  #178  
Old 08-09-2008, 01:37 PM
anderow anderow is offline
 
Join Date: Jun 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ahh.

It has deleted the link from the 'extra options' link I had in there from the Extra Profile Fields modification.

Does anyone know how to add a new icon to this mod?
Reply With Quote
  #179  
Old 08-09-2008, 11:37 PM
ndut ndut is offline
 
Join Date: Sep 2007
Location: Indonesia
Posts: 335
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

icons not showed up.. why?
Reply With Quote
  #180  
Old 08-10-2008, 02:48 AM
EagleNick's Avatar
EagleNick EagleNick is offline
 
Join Date: Dec 2007
Location: Florida
Posts: 517
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I love this modification.

However, after noticing that when I customize my USERCP_SHELL template to add custom links, they don't show up.
I finally disabled this plugin and now they all show up.

Why is that, and how do I resolve the problem?
Reply With Quote
  #181  
Old 08-10-2008, 05:30 AM
safakuygur's Avatar
safakuygur safakuygur is offline
 
Join Date: Sep 2007
Posts: 193
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks very good
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 02:08 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.04841 seconds
  • Memory Usage 2,313KB
  • Queries Executed 25 (?)
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
  • (3)bbcode_code
  • (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_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