The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[Sog-team]xFire Custom Profile Block Details »» | |||||||||||||||||||||||||
What is it?
This mod will allow you to have an extra "module" on user profile pages which will display a xfire status block with a miniprofile link and option to add the user to your contacts list. Demo? http://www.sog-team.co.uk/forum/member.php?u=539 See right hand side of profile page. Installation Instructions: 1) First add a new profile field if not already present, where the user can add their xfire user id. Code:
"Admin CP > User Profile Fields > Add new user profile field" Code:
Single line text box Title: Xfire User ID Field Editable by User > Yes 2) Now add another profile field again if not already done so previously. This will be the style options. Code:
Single Line Selection Menu Title: xFire Profile Style Options: sh, co, sf, os, wow, bg (Separate by carriage return) Field Editable by User > Yes 3) Upload the attached image to forum/images 4) Upload the attached product xml 5) Now edit template "memberinfo_block_xfire" for the relevant styles For all instances of $userinfo[fieldxx], replace "xx" with the number of the field ID for your xfire user ID entry field created. For the one instance of $userinfo[field00], replace "00" with the field ID of your xfire style selection profile field (the second one we created in this tutorial) Save the template. 6) COMPLETE ------------------------------------------------------------------------------------------------------------------- Display Options Now although it seems as if this mod may only be displayed on the right hand side as shown in the demo, you may actually change its order or have it displayed in a new tab on the left if required (as there can be some problems with the image sizing when as a block on the right) All you have to do is this. 1) Go Code:
Admin CP > Products & Plugins > Plugin Manager > Xfire Profile Hack Edit the plugin, ensure it is set as a product for "vbulletin", then edit the PHP code to find: Code:
'hook_location' => 'profile_right_mini' Now change "profile_right_mini" with any of the following explained options: Code:
'profile_left_first' (Will be displayed first in front of "Visitor Messages") 'profile_left_last' (Will be located last in the tabs after "Contact Info") 'profile_right_first' (Will be located first / top on the right) 'profile_right_mini' (Will be located after the mini stats block) 'profile_right_album' (Will be located after the albums block) 'profile_right_last' (Last block on right hand side) -------------------------------------------------------------------------------------------------------------------- UPGRADE: Please just import the new product XML, and ensure you click "overwrite" to YES! ------------------------------------------------------------------------------------------------------------------- Please INSTALL this modification should you use it for notification of the future releases! Planned Future Updates: Alternate TAB template for users wanting to display as a tab Intergrated vbulletin admincp options BB Code addition for users to distribute their sig Version Tracker: Version 1.0: Initial Release Version 1.1: Fixed Product XML Supporters / CoAuthors Show Your Support
|
Comments |
#12
|
||||
|
||||
Ok, i kinda ripped up your code to suit my needs, and all is working fine now, but something in the plugin is making the vbulletin legal info as a link which bothers me.
memberinfo_block_xfire Code:
<if condition="$userinfo[fieldxx]"> <div class="alt1 block_row"> <center><a href="http://profile.xfire.com/$userinfo[fieldxx]" target="_blank"><img src="http://miniprofile.xfire.com/bg/$userinfo[fieldoo]/type/1/$userinfo[fieldxx].png" width="236" height="54" border="0"/></a></center> <br /> <center><a href="xfire:add_friend?user=$userinfo[fieldxx]" rel="nofollow"><img src=images/xfire_addme.png border="0"></center> </div> </if> |
#13
|
||||
|
||||
No, that code doesnt work above, the code ive provided is there for a reason and certainly isnt hassle and certainly works . Its nothing to do with the plugin, that is just PHP functions which wont mess up the display.
I dont know where you got that template code from :s That HTML is to do with the product xml only and is the reason your display is messed up. This is the only code you need to use in the template: Code:
<if condition="$userinfo[fieldxx]"> <div class="alt1 block_row"> <ul class="list_no_decoration"> <thead> <table> <td align="center" class="alt2"><font size="1"><img src="/forum/images/xfire_logo.jpg" alt="Xfire - Gaming Simplified" height="60" width="230">xFire User Account: <b>$userinfo[fieldxx]</b></font> </td> </table> <br /> </thead> <if condition="$userinfo[fieldxx]"> <center> <a href="http://profile.xfire.com/$userinfo[fieldxx]" target="_blank"><img src="http://miniprofile.xfire.com/bg/$userinfo[field00]/type/1/$userinfo[fieldxx].png" width="230" height="63" border="0"/></a> </center> <else /> <center> <a href="http://profile.xfire.com/$userinfo[fieldxx]" target="_blank"><img src="http://miniprofile.xfire.com/bg/sh/type/1/$userinfo[fieldxx].png" width="230" height="63" border="0"/></a> </center> </if> <br /> <center><font size="1"><a href="xfire:add_friend?user=$userinfo[fieldxx]" rel="nofollow"><b>Add $userinfo[username] to xFire Contacts List</b></font></center> </ul> </div> </if> Of course I dont mind people using the code or modifying it, providing it works lol |
#14
|
||||
|
||||
Quote:
|
#15
|
||||
|
||||
Yes sorry, im not implying by the fact it is wrong it doesnt display the module, im more saying the fact the code you cut out was in fact needed in order to display correctly (ie fix the link you report). The code you cut out was required in order to actually correctly fix the display positions.
Lastly, you didnt cause any offence, I actually appreciate your effort, however posting code that could mess up users displays further then stating "it is less hassle and works" doesnt exactly state the truth It isnt the plugin code 100%, I promise you. If you look and have knowledge of PHP, you will notice the functions do not affect the display to that extent. It is if you cut out the code I provided, and use the plugin, then it will cause those issues. To cut a long story short anyhow, you identified for me that the reason why some displays arent working for users is in fact an error in the product xml. Ive updated to v1.01 which should provide fixes for those experiencing difficulties. Please upgrade and overwrite the product. Thanks Matt |
#16
|
||||
|
||||
Ok, i tried it your way, still utterly breaks everything to look ugly. You do not need to input /forums/ as when your img sourcing it goes by the root of the forum, not the site.
Your Way My Way Now from my point of view, my html code works, not saying yours doesn't, but then look up to the first image and see for yourself. I didn't change any plugincode, and the html i used was what you posted, just changed the xx's to the id and oo to style. My problem could be due to the style i a using though, but all in all, this shouldn't happen regardless, especially for a mod like this. |
#17
|
||||
|
||||
Ok, in this case try these two things:
a) Open plugin and try changing the hook location from last to mini. b) If no joy, change the execution order from 5 to 3 It seems something is different on your website. 3 users using the code provided have no issues reported. I think if this fails, we can agree to disagree |
#18
|
||||
|
||||
Quote:
I made a mistake when saying my way is better, when i should of said it's a good alternative to people having problems and just want it up and running. I was helping your customers, not discriminating your work though i understand how you would take it that way. |
#19
|
||||
|
||||
Hey no I didnt take it that way at all, like I said, I appreciate support and efforts to assist like anyone would
My point as petty as it could sound was the fact the statement "use this instead, its less hassle, and works" probably wasnt the best way of putting it. However, I think you understand that from your post above Changing hook execution will run the plugin possibly before a mod that uses 5 as default. You never know, there could always be a conflicting plugin or mod out there relating to your skin or profile. I will work on this further this week, and hopefully get some universal code that will work without a doubt. Ill keep all posted. Matt |
#20
|
|||
|
|||
I installed it, did what the installation instructions told me and I'm unable to view my xfire profile (I don't see anything new).. I added my userID in my profile settings, yet nothing appears in my profile. Images ported, I've attempted to change where it should be displayed, execution order, etc. Nothing works.
|
#21
|
||||
|
||||
link? try replicators fix too
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|