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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-07-2006, 01:48 PM
john_robot john_robot is offline
 
Join Date: Jun 2005
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How Do I Get These extra Buttons?

Hi, I need some help with the extra buttons ( I already have buttons designed ) but not sure how to enable them with the VB
please check the sample image of the button system that I am talking about,

http://itsexpired.com/buttonset.gif

please guide me to enable it or do I have to do custom coding for this ?

let me know
Thank you
Reply With Quote
  #2  
Old 04-07-2006, 01:53 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Those will be custom buttons for that site. The only way that you will get non-default buttons is to open photoshop, or other graphics package, and make your own, or pay someone else to make some for you.
Reply With Quote
  #3  
Old 04-07-2006, 02:11 PM
john_robot john_robot is offline
 
Join Date: Jun 2005
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, Thank you but did you read my post ? I already have buttons designed
But no idea how to enabel them
Reply With Quote
  #4  
Old 04-07-2006, 02:17 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry, my bad. I totally misread it.

Save all the buttons as the same file name as the corresponding default ones, then you have two choices depending on your setup.

1. Overwrite the existing images on your server with the new ones; or
2. Create a new directory for the buttons, copy any remaining default ones into this new directory, upload your custom ones to there, and the in the Style Manager > All Style Settings set the path to the location of the new buttons directory (eg from images/buttons/ to myimages/buttons/).

If you use the first option, then you will need to omit to upload the images directories on future upgrades of vBulletin, and just upload any new images otherwise you will revert the images back to the default ones.

Again, sorry for the confusion, I just totally misread your post at first.

The modifications that you will need to your postbit_legacy template are as follows.

1. Find
Code:
	<if condition="$show['moderated']">
	<td class="alt2" id="td_post_$post[postid]">
	<else />
	<td class="alt1" id="td_post_$post[postid]">
	</if>
Replace With
Code:
<!-- buttons edit - colspan="2" -->
	<if condition="$show['moderated']">
	<td class="alt2" id="td_post_$post[postid]" colspan="2">
	<else />
	<td class="alt1" id="td_post_$post[postid]" colspan="2">
	</if>
<!-- buttons edit end -->
2. Find
Code:
		<if condition="$show['reportlink']"><a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a></if>
		$post[iplogged]
		&nbsp;
	</td>
Add Below
Code:
<!-- buttons start -->	
<if condition="$show['moderated']">
	<td class="alt2" align="$stylevar[left]">
	<else />
	<td class="alt1" align="$stylevar[left]">
	</if>
	<if condition="$show['profile']">
<a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$stylevar[imgdir_button]/profile.gif" alt="$vbphrase[view_public_profile]" border="0" /></a>
	</if>
	<if condition="$show['pmlink']">
<a href="private.php?$session[sessionurl]do=newpm&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]"><img src="$stylevar[imgdir_button]/sendpm.gif" alt="$vbphrase[send_private_message_to_x]" border="0" /></phrase></a>
	</if>
	<if condition="$show['emaillink']">
<a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]"><img src="$stylevar[imgdir_button]/email.gif" alt="$vbphrase[send_email_to_x]" border="0" /></phrase></a>
	</if>
	<if condition="$show['homepage']">
		<a href="$post[homepage]"><phrase 1="$post[username]"><img src="$stylevar[imgdir_button]/home.gif" alt="$vbphrase[visit_xs_homepage]" border="0" /></phrase></a>
	</if>
	<if condition="$show['search']">
		<a href="search.php?$session[sessionurl]do=finduser&amp;u=$post[userid]" rel="nofollow"><phrase 1="$post[username]"><img src="$stylevar[imgdir_button]/find.gif" alt="$vbphrase[find_more_posts_by_x]" border="0" /></phrase></a>
	</if>
	<if condition="$post['userid'] AND $show['member']">
<a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$post[userid]"><phrase 1="$post[username]"><img src="$stylevar[imgdir_button]/buddy.gif" alt="$vbphrase[add_x_to_buddy_list]" border="0" /></phrase></a>
	</if>


</td>
<!-- buttons end -->
Make sure that your images are called
profile.gif
sendpm.gif
email.gif
find.gif
home.gif
buddy.gif

Any problems, let me know.
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 07:09 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.05333 seconds
  • Memory Usage 2,197KB
  • Queries Executed 13 (?)
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
  • (4)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (4)post_thanks_box
  • (4)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit_info
  • (4)postbit
  • (4)postbit_onlinestatus
  • (4)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete