View Full Version : Profile Enhancements - Additional Section within Profile and Dropdown within Posts
Wired1
08-06-2006, 10:00 PM
NOTE: After checking out the vBulletin 3.7 First Look thread (http://www.vbulletin.com/forum/showthread.php?t=249460), which contains significant changes to the Member Profile page, it is clear that this mod as-is will probably not work properly when it comes to displaying the Extra Profile Info on that page. As soon as an official 3.7 comes out, I'll start working on the changes.
The 3.5.x version of this hack can be found here (https://vborg.vbsupport.ru/showthread.php?t=98753).
This hack builds upon my Extra Profile Fields Page (https://vborg.vbsupport.ru/showthread.php?t=123253) hack. This template mod lets you take the extra fields from that hack and places them within a dropdown that sits below the user's title within each post, as well as replaces the Group Memberships area with a listing of only these specs. The EPFP hack is basically the entry form for the data that's manipulated in this hack. Please check out the pics at the EPFP hack link to get the full idea.
In my case, it is used for PC specs (and as you will see the instructions are tailored towards this), however it can be easily used for parts or specifications of almost anything (car parts for example).
An example is shown here:
http://www.houseofhelp.com/forums/showthread.php?t=39826
Example of user profile with specs:
http://www.houseofhelp.com/forums/member.php?userid=15
# of plugin hooks: 1
# of php page edits: 1 (just 1 line to add the custom hook line into member.php)
# of template edits: 3
# of phrase edits: 1
Any suggestions are appreciated.
Don't forget to hit INSTALL! ("https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=123254)
Support will only be given to people who have hit install.
Also, please post where you've installed this, as I'd like to see how people are using it. Or if guests can't see the effects, then please post a pic.
Wired1
08-07-2006, 01:59 AM
Reserved for future use.
bollie
08-07-2006, 03:57 AM
instal ;)
Wired1
08-07-2006, 04:20 AM
:):)
Terminatoronly
08-07-2006, 08:02 AM
good one keep the good work ;) and of course installed ;)
Wired1
08-07-2006, 12:00 PM
Thanks! Please post back if you're doing something cool with the mod :)
delds
08-07-2006, 07:19 PM
Can the selections be made clickable to a url that opens in a new window ?
Wired1
08-07-2006, 09:38 PM
Not with this mod. All the selections are just user profiles. If Jelsoft ever lets profile fields become links, or you find a hack that gives you this option, then it should work fine automatically.
steven s
08-07-2006, 11:57 PM
In the 3.5 version you list the hook contents, but not in 3.6. ??
Wired1
08-08-2006, 01:15 AM
In the 3.5 version you list the hook contents, but not in 3.6. ??Yeah, didn't feel there was a reason to, as you can read the XML code or read the plugin from the admincp.
steven s
08-08-2006, 01:31 AM
I can't figure why the pulldown menu doesn't open.
http://www.318ti.org/forum/showthread.php?t=11816
Wired1
08-08-2006, 02:52 AM
Have you done the last step in the instruction file? (check the PM on your forum).
steven s
08-08-2006, 03:26 AM
Have you done the last step in the instruction file? (check the PM on your forum).You gave me a scare there. :confused:
It is in one postbit and not the other. I'm going to go to sleep and try again when I am awake. Thanks for your help.
Wired1
08-08-2006, 03:32 AM
You gave me a scare there. :confused:
It is in one postbit and not the other. I'm going to go to sleep and try again when I am awake. Thanks for your help.
Hehe, sleep goooood :) No problemo!
Aligator21
08-08-2006, 05:22 AM
I did exactly what you said in the instructions, but there is no pulldown menu show up in my forum :(
I use postbit_legacy and the changes i made them into postbit_legacy insteed of postbit
any help? (see a thread of my forum (http://forum.online-games.gr/showthread.php?p=30381#post30381))
Wired1
08-08-2006, 11:51 AM
I did exactly what you said in the instructions, but there is no pulldown menu show up in my forum :(
I use postbit_legacy and the changes i made them into postbit_legacy insteed of postbit
any help? (see a thread of my forum (http://forum.online-games.gr/showthread.php?p=30381#post30381))
Works fine for me when I check out that post, I take it you got it fixed? Was it just a typo, or missing code, or something else?
Arachnophiles
08-08-2006, 01:41 PM
Great Modification. One question though; when using a 'multiple-line' text box, is it possible for the contents to be displayed vertically rather than horizontally in the drop-down box within posts?
Cheers,
Adam.
Wired1
08-08-2006, 01:51 PM
Great Modification. One question though; when using a 'multiple-line' text box, is it possible for the contents to be displayed vertically rather than horizontally in the drop-down box within posts?
Thanks! I'll have to poke around in the code, see what I can find out.
Arachnophiles
08-08-2006, 03:19 PM
Thanks! I'll have to poke around in the code, see what I can find out.
Thanks, really appreciate that.
I'm using it to allow members to list their collection, some of which are quite lengthy. When allowed to do so in the horizontal format; the drop-down box is off limits to the page.
Example Here (http://www.arachnophiles.co.uk/forum/showthread.php?p=12224#post12224)
Cheers,
Adam.
steven s
08-09-2006, 01:13 AM
Hehe, sleep goooood :) No problemo!
I deleted all products and started from scratch.
after
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
added
<!-- post specs_menu -->
<if condition="$post['field7']">
<div id="specs_$post[postid]" class="vbmenu_control">
<a href="#specs">$post[username]'s ti Garage</a>
<script type="text/javascript"> vbmenu_register("specs_$post[postid]"); </script>
</div>
</if>
<!-- / post specs_menu -->
after
<!-- / post $post[postid] popup menu -->
added
<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s garage</td>
</tr>
<if condition="$post['field7']">
<tr><td class="vbmenu_option">Year: $post[field7]</td></tr>
</if>
<if condition="$post['field8']">
<tr><td class="vbmenu_option">Model: $post[field8]</td></tr>
</if>
<if condition="$post['field9']">
<tr><td class="vbmenu_option">Color: $post[field9]</td></tr>
</if>
<if condition="$post['field10']">
<tr><td class="vbmenu_option">Mods: $post[field10]</td></tr>
</if>
</div>
<!-- / post specs_menu -->
and this is what I got. When not selected there is only one post per page.
I removed the code so not to screw up my board.
Aligator21
08-10-2006, 09:19 AM
Hi again, i have another question!
Can i dublicate this hack?
I want to use it for another extra fields.
How can i do this???
Wired1
08-10-2006, 11:57 AM
1996: I'm going to try to duplicate the problem tonight if I have time.
Aligator: Can you be more precise in what you want to do?
Aligator21
08-11-2006, 07:15 AM
In my forum, i have your hack for users favorite games.
I want to add and another drop down menu, for my users pc specs.
is there any way to do this???
Wired1
08-11-2006, 01:59 PM
In my forum, i have your hack for users favorite games.
I want to add and another drop down menu, for my users pc specs.
is there any way to do this???
Yes, although it depends on some other things. Do you want a seperate entry page? If not, then simply repeat the last two steps of the instruction file with whatever you'd like in the second dropdown. If you do want a seperate entry page, then some minor code edits have to be made to the plugins, products, and instructions, just so no variables conflict basically.
Wired1
08-13-2006, 01:02 AM
I deleted all products and started from scratch, and this is what I got. When not selected there is only one post per page. I removed the code so not to screw up my board.
Just tried it on postbit_legacy on my test server, worked fine. May want to try turning off all other plugins, then see how it works. Assuming it does, enable a plugin one by one to see which one does it.
hurry
08-13-2006, 05:04 AM
Is it possible to have url links in these dropdown rows? Also I want it only for the admin usergroup.
Wired1
08-13-2006, 05:32 AM
Links: No.
You'd have to place conditionals around the last two steps in the instructions. They are the ones that place the dropdowns in the posts.
Why only admins though?
<!-- post specs_menu -->
<if condition="$post['field5']">
<div id="specs_$post[postid]" class="vbmenu_control">
<a href="#specs">$post[username]'s PC Specs</a>
<script type="text/javascript"> vbmenu_register("specs_$post[postid]"); </script>
</div>
</if>
<!-- / post specs_menu -->
How can I change this so rather than displaying the user's name again. It would just display "My Gear".
I actually was able to remove the username, but the size of the "My Gear" background seemed to change depending on the length of the username.
Wired1
08-14-2006, 02:09 AM
<a href="#specs">$post[username]'s PC Specs</a>
change to
<a href="#specs">My Gear</a>
Please hit Install.
Arachnophiles
08-14-2006, 01:55 PM
Hi, did you have any joy in getting the field entries to display vertically rather than horizontally ??
Cheers,
Adam.
Wired1
08-14-2006, 02:33 PM
Hi, did you have any joy in getting the field entries to display vertically rather than horizontally ??My guess as to why it happens was dead on. It's stored as a single string with \r\n for character returns. Problem is, vB strips them before I can get access to them. I know of one way to get around it, BUT... it involves recoding the whole hack and creating a new table in the database just for these fields. A little excessive IMHO.
hrm....
Bad Bunny
08-15-2006, 07:16 PM
GREAT WORK! Your two profile mods are great. I really appreciate it. I made a dumb mistake and started feeling real dumb, but it was just I forgot to save a file before uploading it. lol
I'll have screenshots soon.
Wired1
08-16-2006, 02:11 AM
GREAT WORK! Your two profile mods are great. I really appreciate it. I made a dumb mistake and started feeling real dumb, but it was just I forgot to save a file before uploading it. lol
I'll have screenshots soon.
Glad to hear :)
Arachnophiles
08-16-2006, 09:30 AM
My guess as to why it happens was dead on. It's stored as a single string with \r\n for character returns. Problem is, vB strips them before I can get access to them. I know of one way to get around it, BUT... it involves recoding the whole hack and creating a new table in the database just for these fields. A little excessive IMHO.
hrm....
Fair enough. Is there perhaps a way to specify a maximum width for the 'drop down', after which the text continues onto a new line ?
Cheers,
Adam.
alluidh
08-17-2006, 08:25 AM
Hi Wired1
First I had to tank you for this hack, but I got a little problem
I want to use Checkboxes for the hardware (Picture 1)
In Profil everything works fine (Picture 2)
But in Dropdown there it is wrong (Picture 3)
Are you able to help?
Thanks a lot, Mike
Wired1
08-19-2006, 04:08 AM
Arach:
I'll have to look into it when I get back later next week, but I believe vB's template format will prevent it, as there's no way to code it. If so, I may have to recode the whole thing to get around both limitations. It wasn't designed for loooooooooooong strings, mainly just for easy access to information that could be relevant in any post, for example, computer rigs.
alluidh:
WTF? First guess would be that you've got a typo in the dropdown code, although I haven't attempted to replicate the issue yet. Don't recall having an issue with the test bed though. I'll attempt to replicate it when I get back. Please hit INSTALL.
Snake
08-23-2006, 06:51 PM
Wired, how do I remove the bold effect for the "N/A" phrase in profile view page?
Snake
08-23-2006, 07:09 PM
Nevermind. :P
Chriss74
08-26-2006, 09:13 AM
Nice Hack!
I submit following proposal: It would be nice, if a pictures could be placed in a user-field. This pic should be loaded via AJAX when the dropdown-info is opened. That would be a nice upgrade of this hack.
Greetings,
Chriss
Wired1
08-26-2006, 07:11 PM
This hack won't work on 3.0.1 though :)
That would require a different hack.
bigsbydapicka
08-27-2006, 03:29 PM
I have installed both MODs and have the drop down working great however the info does not show up in the profile view in the bottom right quadrant? The problem seems to be related to the data being linked to the correct box. If members have not added info that normally appears in the profile view in the additional Info area then both quadrants show "N/A".
Any ideas? I followed your instructions to the letter.
http://aquariafreaks.com/VB/index.php
Wired1
08-27-2006, 06:53 PM
tested fine for me, there's got to be a typo or missing code.
bigsbydapicka
08-27-2006, 07:25 PM
Got it. Somehow one of the plugins was not active. Nice hack and works Great!
Cheers!:D
marlita
08-28-2006, 12:17 PM
Arach:
I'll have to look into it when I get back later next week, but I believe vB's template format will prevent it, as there's no way to code it. If so, I may have to recode the whole thing to get around both limitations. It wasn't designed for loooooooooooong strings, mainly just for easy access to information that could be relevant in any post, for example, computer rigs.
alluidh:
WTF? First guess would be that you've got a typo in the dropdown code, although I haven't attempted to replicate the issue yet. Don't recall having an issue with the test bed though. I'll attempt to replicate it when I get back. Please hit INSTALL.
I have the exact same issue as alluidh! Was there any success with getting it to work properly?? Right now my board probably thinks I'm crazy because of how it looks, so any help on this would be greatly appreciated, especially since I'd rather have the mod working than not have it at all. :)
Thanks.
Wired1
08-29-2006, 03:25 AM
I did exactly what you said in the instructions, but there is no pulldown menu show up in my forum :(
I use postbit_legacy and the changes i made them into postbit_legacy insteed of postbit
any help? (see a thread of my forum (http://forum.online-games.gr/showthread.php?p=30381#post30381))
52800
Works fine. Force refresh your page, and clear your cache.
Wired1
08-29-2006, 03:28 AM
I have the exact same issue as alluidh! Was there any success with getting it to work properly?? Right now my board probably thinks I'm crazy because of how it looks, so any help on this would be greatly appreciated, especially since I'd rather have the mod working than not have it at all. :)
Not yet. I believe it's got something to do with how that field is stored, and from that I'd surmise that a DB query could fix it, although I'd rather not add any queries if at all possible. Perhaps a modification of a query though.
marlita
08-30-2006, 12:47 PM
:ermm: is there an eta on the fix? i appreciate you working on it. thank you.
also, i'm wondering how to get certain fields to show up on one panel vs another. i created two new panels on my profile, rather than swapping out the subscribed groups list. now i'd like some of the options from the new edit stats page that i created to appear on one side and some others on the other side. i just don't know how to do it. they all show up on both sides now unless i change $customfields2 to $customfields3, which gives me nothing on one panel. i just can't figure out how to assign those fields to $customfields3.
also, i've set some of the fields to show up on the member list and made them searchable, but they're not coming up. will you login my site (http://www.virginiareia.com)with username test, password test and let me know? thank you.
Wired1
08-30-2006, 08:28 PM
:ermm: is there an eta on the fix? i appreciate you working on it. thank you.
also, i'm wondering how to get certain fields to show up on one panel vs another. i created two new panels on my profile, rather than swapping out the subscribed groups list. now i'd like some of the options from the new edit stats page that i created to appear on one side and some others on the other side. i just don't know how to do it. they all show up on both sides now unless i change $customfields2 to $customfields3, which gives me nothing on one panel. i just can't figure out how to assign those fields to $customfields3.
also, i've set some of the fields to show up on the member list and made them searchable, but they're not coming up. will you login my site (http://www.virginiareia.com)with username test, password test and let me know? thank you.
FYI your dropdown for the UserCP is missing a link to Edit Investment Stats.
Ok, so if I have this straight, you've got one page, and you'd like to take some of the fields and have them on the left, and some others, and have them on the right?
marlita
08-30-2006, 08:44 PM
lol yes! i would. and i noticed that too (about the missing link), but i'm afraid to try to fix b/c I don't want to mess it up. Actually, whatever I did when I went in there, if you look carefully, made the missing link & the edit password link, i think it was, just shrink (you can see the double lines, and if you get your mouse in there, you can actually click on it and it will take you to the edit password/email link. *shrug* lol.
btw, thanks for you help. :)
Wired1
08-31-2006, 02:57 AM
I don't think it would be too hard, just rambling here (to remind me later), but IIRC it'd just be a matter of marking the fields differently, having the edit page show the edit areas for both marks, and then have the quadrants filter them out. I'll look into the code tomorrow, just spent a while updating my own forum to vB 3.6.0, yaaaaaayyyyyy. Now to re-do all the hacks for it!
Wired1
08-31-2006, 07:35 PM
FYI I've found some code to help with the multiple selection profile bug, but not an automated way to do it. It'd have to be customized by the end user.
http://www.vbulletin.com/forum/showthread.php?t=108785
GrendelKhan{TSU
09-04-2006, 01:37 PM
Q: (sorry if this is dumb quesiont...non programmer here). Does using this save the queries of items/postbit elements if you put them in the menu dropdown?
eg:
no. of queries if the items were displayed without the dropdown... 5
no. of queries for same items once you put them into the dropdown.... 1
is that correct?
Jericho2004
09-04-2006, 06:42 PM
Your instructions don't state what to do with the xml file. I added the hook statement, but I am not sure what to do next.
I also am not sure where to change the vB Phrase [group_memberships] to the title I want for the quadrant. Is it in one of the templates?
Thanks.
Wired1
09-04-2006, 10:04 PM
Q: (sorry if this is dumb quesiont...non programmer here). Does using this save the queries of items/postbit elements if you put them in the menu dropdown?
eg:
no. of queries if the items were displayed without the dropdown... 5
no. of queries for same items once you put them into the dropdown.... 1
is that correct?
Dunno. There's only one query for all of the profile fields in my hack, so I don't know what you're comparing it to.
Your instructions don't state what to do with the xml file. I added the hook statement, but I am not sure what to do next.
I also am not sure where to change the vB Phrase [group_memberships] to the title I want for the quadrant. Is it in one of the templates?
Jericho2004: Please hit Install.
Do you mean extra member fields.xml? It's a plugin, upload it like any other plugin.
You change the phrase in the Phrase Manager within the AdminCP.
Jericho2004
09-05-2006, 03:02 PM
Dunno. There's only one query for all of the profile fields in my hack, so I don't know what you're comparing it to.
Jericho2004: Please hit Install.
Do you mean extra member fields.xml? It's a plugin, upload it like any other plugin.
You change the phrase in the Phrase Manager within the AdminCP.
Sorry, I hit install. Everything works except it is not pulling the data from the cp into the public profile in that bottom right quadrant. Thanks for the help.
Wired1
09-06-2006, 12:00 AM
You manually edited the member page, correct? What code is where the group membership code was?
Jericho2004
09-06-2006, 02:36 AM
You manually edited the member page, correct? What code is where the group membership code was?
Yes I changed the title of the quadrant and replaced the code in the memberinfo template. And, the data from the cp is not showing up. It is probably something I overlooked, but I have gone through it a few times now. Thanks.
Wired1
09-06-2006, 11:24 PM
PM me all the code from your member page template I guess.
Ninth Dimension
09-07-2006, 01:00 AM
This looks like a very good hack, one which I would be interested in using, only slightly modified..
Would it be possible for me to edit the hack so that it displays the results of my own custom query, rather than info from the control panel?
My idea is based around the fact I run an interactive story site that intregrates with my forum. What I'm looking to do is query the database for each user to see if they have made any posts on the story site, and have links to them listed under their username, as well as on their member profile page.
How easy/hard would something like this be to achieve? Thank you.
Jericho2004
09-07-2006, 08:25 PM
This is strange. The dropdown only shows up for admins and mods on my site and not for regular members. Anyone know what would cause that?
Wired1
09-08-2006, 05:27 AM
My idea is based around the fact I run an interactive story site that intregrates with my forum. What I'm looking to do is query the database for each user to see if they have made any posts on the story site, and have links to them listed under their username, as well as on their member profile page.I take it you already know the appropriate queries to gather the story site info? To be honest, that would be a different hack, as mine gathers static profile field info, whereas what I believe you are looking to accomplish will gather constantly changing data.
Only thing I can think of offhand would be to create some vB database queries that hit the story tables and save the results as vB variables (all of this in the member page), and then slap the variable into the member page similar to how I've done. The ones under each user's name in each post could be more difficult, depending on how your story site tables link with vB, if at all.
This is strange. The dropdown only shows up for admins and mods on my site and not for regular members. Anyone know what would cause that?
It would have to be wrapped in conditionals that limit the viewing for this to happen. PM me the code for your member page and I'll analyze it.
Ninth Dimension
09-09-2006, 12:00 AM
I take it you already know the appropriate queries to gather the story site info?
Oh yeah, that's no problem at all. I can do the queries and everything else I need to do, it was more the drop-down list thing you have in the postbit that I was most interested in, for someone to hit the link and have a list of the chapters they posted appear - although I think at this point, that might be a bit advanced for me ;)
I know that this is not really the best place to talk about it, but I was wondering if you might be able to do me a HUGE favour? I'm totally new to the way that vB handles hacks, etc.. If I understand it correctly, there are hooks dotted about within the files, you just choose the most relevent one (say, at a point just before you want the data to display), and insert some code, say a query.. which you can then load into a variable, and have displayed within a template? (I'm probally making it sound really basic, but I think that's how it's meant to work).
Seeing as you've taken over the group membership box on the member profile page (which is where I'd probally have my chapter links appear), would you be kind enough to let me know which hook you're using, and some basic tips on how I should go about creating it?
Thank you :)
Wired1
09-09-2006, 01:00 AM
Hooks are within PHP pages, and the one I used I made and slapped into the XML hook listings page and the PHP file :)
The hook isn't related to the location of the extra profile field's location on the member page though. That's due to the edits made in the member page in the instructions. The hook code gets the specially marked profile fields from the profile field list. The template edits basically just relabel the box and call the list of marked profile fields.
The dropdown code is manually created by the forum admin who creates it, as per the instructions. It simply calls the profile fields they want.
Ninth Dimension
09-09-2006, 01:44 AM
Hi there, thank you for the info... I've actully succeded in my task, I don't know if I've done is the best way it can be done, but so far it appears to be working: http://theice.co.uk/member.php?u=5 (take a look at where the group membership should be).
I've used the hook of member_complete (I did try using member_start, but the $userinfo[userid] variable wasn't available), and as I say, it looks like it's working :)
All I need to do now is explore some more of your code and see if I can't borrow what you've done in the postbit ;)
Cheers for the help :D
Wired1
09-09-2006, 02:15 AM
Hi there, thank you for the info... I've actully succeded in my task, I don't know if I've done is the best way it can be done, but so far it appears to be working: http://theice.co.uk/member.php?u=5 (take a look at where the group membership should be).
I've used the hook of member_complete (I did try using member_start, but the $userinfo[userid] variable wasn't available), and as I say, it looks like it's working :)
All I need to do now is explore some more of your code and see if I can't borrow what you've done in the postbit ;)
Cheers for the help :D
Looks good!
AzzidReign
09-09-2006, 10:53 PM
I have a problem :-(...
the dropdown list doesn' t excist
and i think that there is a mistake with the member info page... at the top it shows me this:
Parse error: syntax error, unexpected '<' in /var/www/vhosts/localhost/subdomains/forum/httpdocs/member.php(625) : eval()'d code on line 1
any ideas?
Wired1
09-10-2006, 01:42 AM
the code shown indicates a typo.
Have you followed all of the instructions for the dropdown?
hexus.net
09-10-2006, 03:44 PM
I get the same thing - just installed it and my member page does that too.
Double checked I hadn't done a typo :O
Jericho2004
09-10-2006, 03:56 PM
I take it you already know the appropriate queries to gather the story site info? To be honest, that would be a different hack, as mine gathers static profile field info, whereas what I believe you are looking to accomplish will gather constantly changing data.
Only thing I can think of offhand would be to create some vB database queries that hit the story tables and save the results as vB variables (all of this in the member page), and then slap the variable into the member page similar to how I've done. The ones under each user's name in each post could be more difficult, depending on how your story site tables link with vB, if at all.
It would have to be wrapped in conditionals that limit the viewing for this to happen. PM me the code for your member page and I'll analyze it.
I fixed the dropdown issue. There happened to be one small part of the code that pointed to field5. That was not identified in the instructions. I still cannot get the public profile area in the bottom right quadrant to grab the system specs from the usercp. The instructions are too vague for non-coders and miss alot of specifics. Other than that, everything else is working.
cyvok
09-10-2006, 04:02 PM
I have now installed both of these hacks. Its the little things that add so much!
Thank you
-CYVOK-
hexus.net
09-10-2006, 04:07 PM
I get the same thing - just installed it and my member page does that too.
Double checked I hadn't done a typo :O
Removing the hook line obviously stops it 0 but taking out the member info from member.php doesn't.
Hmmm
Wired1
09-11-2006, 04:01 AM
I fixed the dropdown issue. There happened to be one small part of the code that pointed to field5. That was not identified in the instructions. I still cannot get the public profile area in the bottom right quadrant to grab the system specs from the usercp. The instructions are too vague for non-coders and miss alot of specifics. Other than that, everything else is working.Fixed the instructions. Do you have the other hack installed?
I get the same thing - just installed it and my member page does that too. Double checked I hadn't done a typo :ORemoving the hook line obviously stops it 0 but taking out the member info from member.php doesn't. HmmmWell, that error does indicate a typo, so you've got me! Could be an extra </DIV> or something copied in there possibly when you manually copied the info into the member.php. I know when testing it out and copying in code, I've accidentally left an extra div or </SOMETHING> in there. BTW, glad to see another tech site using the hack :) Going to use it for PC specs I take it?
I have now installed both of these hacks. Its the little things that add so much! Thank you -CYVOK-No problemo!
Limerick
09-23-2006, 02:59 PM
Hello Wired,
When I try to import the .xml file as a Product, vB says that it seems to be a Module and not a Product. So it advises me to import it as Module, but there I don't how to do with such type of file.
Wired1
09-24-2006, 02:03 AM
When I try to import the .xml file as a Product, vB says that it seems to be a Module and not a Product. So it advises me to import it as Module, but there I don't how to do with such type of file.
It's a plugin, not a product. Go to Download / Upload Plugins and import it.
Limerick
09-24-2006, 09:13 AM
Hello Wired,
Thanks for your reply.
I think I did now everything I was supposed to do for your two hacks (i.e. with EPFP), but I don't have any dropdown menu next to my username.
I may have done something wrong...
Wired1
09-24-2006, 07:21 PM
1. do you have any profile fields in the edit page?
2. did you change any of the fields to be in the edit page?
Limerick
09-25-2006, 07:48 PM
1. do you have any profile fields in the edit page?
2. did you change any of the fields to be in the edit page?
As far as I know, yes, I did all that, it's why I don't understand.
But obviously, I may have missed something :confused:
Wired1
09-25-2006, 08:00 PM
Only thing I can think of is to go over the instructions again, as I know it works fine. If you want I (or someone else you trust) could look at your adminCP settings I guess.
Wired1
09-27-2006, 02:16 AM
Looked them over, I'm guessing you've left in the conditional for field 5, and nothing's there.
Hornstar
09-27-2006, 05:46 AM
Can the selections be made clickable to a url that opens in a new window ?
this hack here may help https://vborg.vbsupport.ru/showthread.php?t=120833
Wired1
09-27-2006, 11:56 AM
this hack here may help https://vborg.vbsupport.ru/showthread.php?t=120833
That hack simply makes it a one click to search the member list for members with similar profile fields. I believe he wants full hyperlinks to external sites.
Limerick
09-27-2006, 07:13 PM
Looked them over, I'm guessing you've left in the conditional for field 5, and nothing's there.
I'm sorry Wired, I didn't catch what you mean :confused:
Klaymen TK
09-27-2006, 07:19 PM
Great hack man. Thanks.
Wired1
09-28-2006, 12:30 AM
I'm sorry Wired, I didn't catch what you mean :confused:
From the instructions:
The following code places the dropdown within the user's post. The IF condition is only needed if you wish the dropdown to only show if a particular field has information within it, and fieldX is the fieldID of said field.
You left the conditional in there (and it's set to fieldX by default), so it always failed, so there was never a dropdown. I removed the conditional, it works fine now.
Great hack man. Thanks.You're welcome :)
Klaymen, limerick, please hit INSTALL :)
Klaymen TK
09-28-2006, 02:00 PM
Installed, I've forgot it, zorry. :p
Limerick
09-28-2006, 06:38 PM
Klaymen, limerick, please hit INSTALL :)
Of course : done.
Sorry for the delay...
993ti
10-28-2006, 03:41 PM
Im using it here (http://www.internationaltrs.com/member.php?u=1) but i skipped the postbit part ;)
Great mod, thanks :)
Cocko
12-22-2006, 01:27 PM
i'd like to use this hack for selected usergroups
is that possible ? (acp or conditionals)
RedGTiVR6
01-03-2007, 02:41 PM
I have installed both MODs and have the drop down working great however the info does not show up in the profile view in the bottom right quadrant?
I'm having a similar problem.
Currently, I'm the only one on the page to have filled out the fields.
When I go to view my profile, all I get it a blank field where it should show all of my CarPC specs.
What could be the reason for this?
I've uploaded the plugin.
I'm not sure if I've followed the instructions 100%, they are a bit difficult to follow in the first part as they seem to jump around a bit...at least coming from someone who has very little experience working with vBulletin.
I've got most everything else working perfectly....just need some help on this part.
Any help would be appreciated!
RedGTiVR6
01-03-2007, 02:58 PM
Got it!
Great mod! now I'm off to find out how I can change the color of the background of the area you click to get the drop down box...anyone?
Staxed
01-16-2007, 09:46 PM
Not yet. I believe it's got something to do with how that field is stored, and from that I'd surmise that a DB query could fix it, although I'd rather not add any queries if at all possible. Perhaps a modification of a query though.
did you ever work on a fix to set the dropdown to fixed width and have long fields extend to a second line?
RedGTiVR6
01-19-2007, 04:33 PM
Got it!
Great mod! now I'm off to find out how I can change the color of the background of the area you click to get the drop down box...anyone?
anyone?
RedGTiVR6
01-23-2007, 01:29 PM
I guess this mod has died?
Wired1
02-03-2007, 05:32 AM
i'd like to use this hack for selected usergroups
is that possible ? (acp or conditionals)That's outside of the scope of this hack. This hack simply displays profile fields in a different way. Search for hacks that let you limit profile fields to selected usergroups.
Got it!
Great mod! now I'm off to find out how I can change the color of the background of the area you click to get the drop down box...anyone?This hack just uses the default vBulletin dropdown function, so I'd start with that. NOTE: if you want all of them to change, then I'd edit that function. If you want only the dropdowns for this hack to have different colors, then you'd need to copy the function, rename it something else, and call it seperately. Either way, editing the dropdown background is outside the scope of this hack.
did you ever work on a fix to set the dropdown to fixed width and have long fields extend to a second line?Never worked. As mentioned above, it's just the vBulletin dropdown function, so I'd bring it up the "limitation", or "function enchancement request" with Jelsoft, but they may not care since they only officially support their code and not other people's code.
Mr. Christopher
02-19-2007, 01:09 PM
I'm getting a blank space at the beginning of the Extra Options section and I'm not sure what's causing it. Any suggestions? :(
http://users.marshall.edu/~haynes21/line275.gif
Wired1
02-19-2007, 10:49 PM
heh, never noticed that before :)
It's due to something in the Extra Member Fields plugin, but what I'm not sure of yet. All that plugin is is some vBulletin code with one number changed.
afmarko99
02-20-2007, 06:13 PM
Ok so I have this mod working on my forum and I will say that I like it a lot.
Thank you.
I have two questions.
How would I move it to the right side under: Join Date, Location, Etc.
Also I am trying to figure out how to remove the box placed around 'EaglezEye's Computer Specs'. I want it to just display the text.
Can anyone help me?
????
Wired1
02-21-2007, 03:12 PM
The box is due to the vBulletin function for dropdowns. You'd either have to edit that function, which would change all dropdowns, or copy it, modify it, and then refer to that modified function.
As for moving it to the right, a couple of lines down from where the dropdown code is placed within the postbit, you'll find the vBulletin code for the Join Date, location, etc. Just move the dropdown code into that area.
oldford
02-25-2007, 08:42 PM
Great mod. Thanks!
I installed without too much trouble, although Wired1, you might consider adding to the instructions that you need to upload the plugin file. People will eventually figure it out, but it would make the instructions more "step by step" and easier to follow.
And too bad about not being able to wrap long lines of text, but I understand that's an issue w/ VB.
Wired1
02-28-2007, 12:27 PM
I believe the vBulletin manual tells you how to install a plugin.
oldford
02-28-2007, 01:35 PM
It was just a suggestion to make your instructions more clear. There's nothing in there stating what to do with the XML file. The question has been asked already in this thread so obviously some people are confused by it.
4x4 Mecca
03-01-2007, 12:34 AM
Installed! You can see it here http://www.4x4mecca.com/forum/showpost.php?p=7396&postcount=2
I want it not to be blue though, and I know it is part of my vbmenu_control setup. Can I create a custom copy of the vbmenu_control and change the colors around?
EDIT
Never mind, I saw your reply
https://vborg.vbsupport.ru/showpost.php?p=1173482&postcount=94
4x4 Mecca
03-01-2007, 02:51 AM
I got it fixed, I edited the vbulletin-style.xml and copied the vbmenu_control and renamed it and changed the BG color and size
You can see here how it looks now
http://www.4x4mecca.com/forum/showpost.php?p=7396&postcount=2
PM me for help if you need it, I may not check this post often.
RedGTiVR6
03-04-2007, 11:29 AM
can anyone tell me where in the DB these fields are stored?
Wired1
03-05-2007, 01:47 PM
can anyone tell me where in the DB these fields are stored?
This has been answered in another thread, and has nothing to actually do with this hack. There are no database changes with ANY of my hacks to date, so any vBulletin profile field location information should either be directed towards Jelsoft, or to a more appropriate forum / thread.
valdet
03-07-2007, 02:59 PM
Can someone confirm if this works in 3.6.5 postbit_legacy and I would like to place this under avatar??
thx.
Wired1
03-07-2007, 04:06 PM
yes, but the instructions are tailored for the postbit. Just paste the dropdown code under the avatar code in the postbit_legacy.
Took me a while (Note to self: Do not install mods on no sleep).. but I got it =0) This is an awesome addition to my site.. Thankyou so much!!!
One question... is there a way to get rid of the little arrow graphic next to it? I'm assuming I couldn't or it would also get rid of the one on my navbar? Oh well I can live with it... LOVE this mod!
Always, Bree
(vBulletin 3.6.5)
Wired1
03-13-2007, 02:14 PM
Took me a while (Note to self: Do not install mods on no sleep).. but I got it =0) This is an awesome addition to my site.. Thankyou so much!!!
One question... is there a way to get rid of the little arrow graphic next to it? I'm assuming I couldn't or it would also get rid of the one on my navbar? Oh well I can live with it... LOVE this mod!
Thanks :)
It's using the same vBulletin function that creates the dropdowns in the navbar.
Its ok - I'm already used to the arrow being there LOL So it's fine... and I've gotten a lot of compliments from my members... Again, thankyou! Always, Bree
RedGTiVR6
05-25-2007, 01:50 PM
Upgraded to 3.6.7PL1 and I've got a small issue with the formatting on the memberinfo page.
It looks like the following:
http://www.mj-garage.com/pics/specs.JPG
I've added the code to the template, but something isn't right.
Here's my code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<style type="text/css">
#additionalinfo_list dd, #membergroups_list dd { margin: 0px 0px $stylevar[cellpadding]px 0px; }
</style>
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title>
</head>
<body>
$header
$navbar
<!-- main info - avatar, profilepic etc. -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[view_profile]<span class="normal">: $userinfo[username]</span></td>
</tr>
<tr>
<td class="alt2">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="border-bottom:1px solid $stylevar[tborder_bgcolor]" width="100%" colspan="2">
<if condition="$userinfo['rank'] OR $userinfo['reputationdisplay']">
<div style="float:$stylevar[right]; padding:4px">
<if condition="$userinfo['rank']"><div align="center">$userinfo[rank]</div></if>
<if condition="$userinfo['reputationdisplay']"><div align="center">$userinfo[reputationdisplay]</div></if>
</div>
</if>
<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>
<if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if>
</td>
<if condition="$show['profilepic']">
<td valign="top" align="$stylevar[right]" rowspan="2">
<img src="$userinfo[profilepicurl]" $userinfo[profilepicsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_picture]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" />
</td>
</if>
</tr>
<tr valign="top">
<if condition="$show['avatar']">
<td><img src="$userinfo[avatarurl]" $userinfo[avatarsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_avatar]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" /></td>
<else />
<td> </td>
</if>
<td class="smallfont" valign="bottom" align="$stylevar[right]">
<if condition="$show['lastactivity']">
<div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span> </div>
</if>
<if condition="$show['currentlocation']">
<div>$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time] </div>
</if>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- / main info - avatar, profilepic etc. -->
$template_hook[memberinfo_pos1]
<!-- button row -->
<if condition="$show['profilelinks']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<if condition="$userinfo['showvcard']">
<td class="vbmenu_control"><a href="member.php?$session[sessionurl]do=vcard&u=$userinfo[userid]" rel="nofollow">$vbphrase[download_vcard]</a></td>
</if>
<if condition="$show['member']">
<td class="vbmenu_control">
<if condition="$show['addbuddylist']">
<a href="profile.php?$session[sessionurl]do=addlist&userlist=buddy&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_buddy_list]</phrase></a>
<else />
<a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[remove_x_from_your_buddylist]</phrase></a>
</if>
</td>
<td class="vbmenu_control">
<if condition="$show['addignorelist']">
<a href="profile.php?$session[sessionurl]do=addlist&userlist=ignore&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_ignore_list]</phrase></a>
<else />
<a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[remove_x_from_your_ignorelist]</phrase></a>
</if>
</td>
</if>
<if condition="can_moderate()">
<td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&u=$userinfo[userid]">$vbphrase[user_options]</a></td>
</if>
<if condition="$show['giveinfraction']">
<td class="vbmenu_control"><a href="infraction.php?$session[sessionurl]do=report&u=$userinfo[userid]">$vbphrase[give_infraction]</a></td>
</if>
</tr>
</table>
</if>
<!-- / button row -->
<br />
$template_hook[memberinfo_pos2]
<if condition="$show['infractions']">
<!-- infractions row -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="$colspan"><span style="float:$stylevar[right]" class="smallfont"><phrase 1="$userinfo[ipoints]">$vbphrase[x_points_total]</phrase> </span>$vbphrase[infractions]</td>
</tr>
<tr>
<td class="thead"> </td>
<td class="thead">$vbphrase[post]</td>
<td class="thead">$vbphrase[date]</td>
<td class="thead">$vbphrase[expires]</td>
<td class="thead">$vbphrase[points]</td>
<td class="thead">$vbphrase[reason]</td>
<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
<if condition="$show['reverse']"><td class="thead">$vbphrase[details]</td></if>
</tr>
$infractionbits
</table>
<if condition="$pagenav">
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-top:3px">
<tr valign="bottom">
<td align="$stylevar[right]">$pagenav</td>
</tr>
</table>
</if>
<!-- / infractions row -->
<br />
</if>
$template_hook[memberinfo_pos3]
<if condition="$show['signature']">
<!-- signature row -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[signature]</td>
</tr>
<tr>
<td class="alt1" title="$vbphrase[signature]">$userinfo[signature]</td>
</tr>
</table>
<!-- / signature row -->
<br />
</if>
$template_hook[memberinfo_pos4]
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" width="50%">$vbphrase[forum_info]</td>
<td class="tcat" width="50%">$vbphrase[contact_info]</td>
</tr>
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[join_date]: <strong>$userinfo[datejoined]</strong>
</div>
</div>
<fieldset class="fieldset">
<legend>$vbphrase[posts]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>
$vbphrase[total_posts]: <strong>$userinfo[posts]</strong> (<phrase 1="$postsperday">$vbphrase[x_posts_per_day]</phrase>)
</td>
</tr>
<if condition="$vboptions['profilelastpost']">
<tr>
<td>
$vbphrase[last_post]:<br />
<a href="$userinfo[lastposturl]">$userinfo[lastposttitle]</a><br />
$userinfo[lastpostdate] <span class="time">$userinfo[lastposttime]</span>
</td>
</tr>
</if>
<tr>
<td><a href="search.php?$session[sessionurl]do=finduser&u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_posts_by_x]</phrase></a></td>
</tr>
<tr>
<td><a href="search.php?$session[sessionurl]do=finduser&u=$userinfo[userid]&starteronly=1" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_threads_started_by_x]</phrase></a></td>
</tr>
</table>
</fieldset>
$dmemberinfo
<if condition="$vboptions['usereferrer']">
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[referrals]: <strong>$referrals</strong>
</div>
</div>
</if>
<if condition="$vboptions[vbclassified_active] == '1'">
<fieldset class="smallfont"><legend>$vbphrase[vbclassified]</legend>
<div><b>$vbphrase[vbclassified_feedscore]:</b> $userinfo[vbclassified_score]</div>
<div><b>$vbphrase[vbclassified_posfeed]:</b> $userinfo[vbclassified_pcnt]</div>
</fieldset>
</if>
<if condition="$show['usernotes']">
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[user_notes]:
<if condition="$show['usernoteview']">
<strong>$usernote[total]</strong> [<a href="usernote.php?$session[sessionurl]u=$userinfo[userid]">$vbphrase[view]</a>]
</if>
<if condition="$show['usernotepost']">
[<a href="usernote.php?$session[sessionurl]do=newnote&u=$userinfo[userid]">$vbphrase[post_user_note]</a>]
</if>
<if condition="$show['usernoteview']">
<br />($vbphrase[last_note]: $usernote[lastpostdate] <span class="time">$usernote[lastposttime]</span>)
</if>
</div>
</div>
</if>
$template_hook[memberinfo_foruminfo]
</div>
</div>
</td>
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<if condition="!$show['contactlinks']">
<tr>
<td><strong><phrase 1="$userinfo[username]">$vbphrase[x_has_no_contact_info]</phrase></strong></td>
</tr>
</if>
<if condition="$show['homepage']">
<tr>
<td>
$vbphrase[home_page]:<br />
<a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
</td>
</tr>
</if>
<if condition="$show['email']">
<tr>
<td>
$vbphrase[email]:<br />
<a href="sendmessage.php?$session[sessionurl]do=mailmember&u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[send_message_via_email_to_x]</phrase></a>
</td>
</tr>
</if>
<if condition="$show['pm']">
<tr>
<td>
$vbphrase[private_message]:<br />
<a href="private.php?$session[sessionurl]do=newpm&u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[send_private_message_to_x]</phrase></a>
</td>
</tr>
</if>
</table>
</div>
<if condition="$show['hasimicons']">
<fieldset class="fieldset">
<legend>$vbphrase[instant_messaging]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<if condition="$show['textimicons']">
<if condition="$userinfo['showicq']">
<tr>
<td>$vbphrase[icq]</td>
<td>$userinfo[icq]</td>
</tr>
</if>
<if condition="$userinfo['showaim']">
<tr>
<td>$vbphrase[aim]</td>
<td>$userinfo[aim]</td>
</tr>
</if>
<if condition="$userinfo['showmsn']">
<tr>
<td>$vbphrase[msn]</td>
<td>$userinfo[msn]</td>
</tr>
</if>
<if condition="$userinfo['showyahoo']">
<tr>
<td>$vbphrase[yahoo]</td>
<td>$userinfo[yahoo]</td>
</tr>
</if>
<if condition="$userinfo['skype']">
<tr>
<td>$vbphrase[skype]</td>
<td>$userinfo[skype]</td>
</tr>
</if>
<else />
<if condition="$userinfo['showicq']">
<tr>
<td>$userinfo[icqicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('icq', '$userinfo[userid]', 500, 450); return false;">$userinfo[icq]</a></td>
</tr>
</if>
<if condition="$userinfo['showaim']">
<tr>
<td>$userinfo[aimicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('aim', '$userinfo[userid]', 400, 200); return false;">$userinfo[aim]</a></td>
</tr>
</if>
<if condition="$userinfo['showmsn']">
<tr>
<td>$userinfo[msnicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('msn', '$userinfo[userid]', 400, 200); return false;">$userinfo[msn]</a></td>
</tr>
</if>
<if condition="$userinfo['showyahoo']">
<tr>
<td>$userinfo[yahooicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('yahoo', '$userinfo[userid]', 400, 200); return false;">$userinfo[yahoo]</a></td>
</tr>
</if>
<if condition="$userinfo['showskype']">
<tr>
<td>$userinfo[skypeicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">$userinfo[skype]</a></td>
</tr>
</if>
</if>
$template_hook[memberinfo_iminfo]
</table>
</fieldset>
</if>
$template_hook[memberinfo_contactinfo]
</div>
</div>
</td>
</tr>
<tr>
<td class="tcat" width="50%">$vbphrase[additional_information]</td>
<td class="tcat" width="50%">$vbphrase[extra_options]</td>
</tr>
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<if condition="$show['extrainfo']">
<dl id="additionalinfo_list">
<if condition="$show['birthday']">
<dt class="smallfont"><strong>$vbphrase[birth_date]</strong>:</dt>
<dd class="smallfont">$userinfo[birthday]</dd>
</if>
<if condition="$show['age']">
<dt class="smallfont"><strong>$vbphrase[age]</strong>:</dt>
<dd class="smallfont">$userinfo[age]</dd>
</if>
$customfields
</dl>
<else />
<em>$vbphrase[n_a]</em>
</if>
</div>
</div>
</div>
</td>
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<if condition="$show['extrainfo']">
<td></td>
<else />
<td><strong><em>$vbphrase[n_a]</em></td>
</if>
</tr>
$customfields2
</table>
</div>
</div>
</td>
</table>
<br />
$dmemberfiles
$footer
</body>
</html>
Any help?
RedGTiVR6
05-29-2007, 05:23 PM
Does anyone happen to have any insight?
I'm sure I just need to write the code correctly. Problem is, I'm not sure how to do that as I don't know code very well at all.
DataVampire
05-30-2007, 08:29 PM
hi guys i got a majour prob with this hack i cannot get it to work, i feel it might have something to do with two additial programs installed. vportal and photoplog, anybody else have any isues with this running what im running, i have installed it to the letter.
And it wont show up wher eit is supposed to show up, the plugin is showing up in admin cp under manage products but thats it.
im running hte latest vbull/
Help please
Wired1
05-31-2007, 10:54 PM
Just upgraded to 3.6.7 myself and skimming the code it looks like they have plugin locations now, so I'm going to upgrade the code for it this weekend. I'll also look into the normal member info issue, but off the top of my head I don't see the correlation as it's a different cell, but I do see it on my own forums, so we'll see.
DataVampire
05-31-2007, 11:33 PM
Just upgraded to 3.6.7 myself and skimming the code it looks like they have plugin locations now, so I'm going to upgrade the code for it this weekend. I'll also look into the normal member info issue, but off the top of my head I don't see the correlation as it's a different cell, but I do see it on my own forums, so we'll see.
Ok thank you for the update, i look forward to the update
4x4 Mecca
06-06-2007, 02:13 AM
I've added new skins, and even though I've made the edits to postbit, I can't see the drop down in there. I've reinstalled the product too. The information is still in the fields too. Any idea where I should start looking?
4x4 Mecca
06-06-2007, 03:34 PM
Never Mind, the template cache updated.
fox3nova
06-11-2007, 08:15 AM
in the instructions:
vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> Member Info Templates -> MEMBERINFO
FIND:
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<if condition="$show['membergroups']">
<td></td>
<else />
<td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td>
</if>
</tr>
$membergroupbits
</table>
</div>
REPLACE WITH:
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<if condition="$show['extrainfo']">
<td></td>
<else />
<td><strong><em>$vbphrase[n_a]</em></td>
</if>
</tr>
$customfields2
</table>
</div>
I don't understand why use $customfields2 ?
I cant find the $customfields2 in any php files, my MEMBERINFO can't show the info about I created in Extra Profile Fields Page !
calord
06-12-2007, 06:38 PM
As with post #118 above, that piece of code doesn't exist in my template. Where should I place it?
calord
06-12-2007, 06:43 PM
double post
Wired1
06-13-2007, 05:52 AM
Hrm, looks like a whole hook is missing from the main hack. Odd thing is, while looking over the code this weekend, I downloaded everything from these threads and installed it fine per the uploaded instructions. Maybe I wasn't working off of the instructions I thought it was. I'll re-do it tomorrow.
As for what it does, it calls only the marked profile fields and displays them in that box. If you can't wait for the new code to be posted, check out the 3.0.x and 3.5.x threads, they have it in their code as well.
Wired1
06-17-2007, 10:56 PM
Damned if I know why, but the plugin's back, all on its own...
Anyway, I've updated the instructions. vBulletin changed the memberinfo page a bit, and as such I've translated those changes over to this hack. Just some minor formatting.
RedGTiVR6
06-17-2007, 11:31 PM
precisely what do we need to update to get the part of the memberinfo page to show up correctly?
Just re-upload the .xml?
The instructions are still for 3.6.0. Or at least that's what they say at the top of the .txt file when you open it.
Wired1
06-18-2007, 10:40 PM
yep, re-upload the XML file. Fixed instruction file's title.
RedGTiVR6
06-19-2007, 02:39 AM
when I upload the .xml as a plugin, it doesn't update the version in the plug-in list. Still lists it as 2.1.0 not 2.1.1.
Otherwise, it's fixed on our forum!
Thanks for the update!
dbirosel
06-21-2007, 04:38 PM
Everything on MEMBERINFO is screwed up. What did I do wrong?
Done everything by the book (twice) and the dropdown wont display - in usercp, the extra options is shown but when clicked all I get is "save changes" and "reset fields" - no fields to input stuff to :(
hobbystoresearc
08-08-2007, 02:18 AM
Is there a way so in the admincp area a line can be added to seperate profile fields from the extra option profile fields? Right now they are bunched together but it would be great to see a category line that says 'Extra Options' then under that the Extra Option fields are shown.
nnjj.net
08-08-2007, 07:32 AM
what if I need to use it for photography use instead of PC spesfications?
home9000
08-11-2007, 10:16 AM
It it working in 3.6.5 ?
nnjj.net
08-11-2007, 10:25 AM
any one plz? and does it work on 3.6.8?
home9000
08-11-2007, 12:26 PM
I try it on 3.6.5
but without succeed
I think there is some thin missing in code or template
It's not appear in user profile or in postbite
Saviour
09-04-2007, 01:13 AM
I've got the extar fields page working, but the dropdown doesn't appear...
Man, these mods are racking my brain...I could've made a mistake, but the only thing I think may be causing the issue is the edit to the member.php file...attached.
This is a great mod...I just wish there was someone around to help...
I'm using 3.6.8
UPDATE:
Got tired of waiting for help...
I just removed the if conditional from the postbit and..."voila"...done and done.
Thanks for the help...
The Realist
10-05-2007, 01:06 PM
Ok,
Looked at the edit instructions and it says to find:
<if condition="$show['membergroups']">
<dl id="membergroups_list" class="smallfont">
$membergroupbits
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></div>
</if>
And replace it with:
<if condition="$show['extrainfo']">
<dl id="additionalinfo_list">
$customfields2
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></div>
</if>
But my MEMBERINFO template looks like this:
<if condition="$show['membergroups']">
<td></td>
<else />
<td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td>
</if>
</tr>
$membergroupbits
</table>
</div>
</div>
</div>
</td>
</tr>
</table>
So what edits do I need to make?
Regards.
Wired1
10-06-2007, 09:13 PM
Replace:
<if condition="$show['membergroups']">
<td></td>
<else />
<td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td>
</if>
</tr>
$membergroupbits
</table>
With:
<if condition="$show['extrainfo']">
<td></td>
<else />
<td><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></td>
</if>
</tr>
$customfields2
</table>
WtwSkippy
10-06-2007, 10:56 PM
This hack is PERFECT for what I need for two sites (horse message board and car club).
BTW, woot for Orlando, FL. I'm over by Unviersal Studios
The Realist
10-07-2007, 08:59 AM
Thanks, I'll give it a shot now and report back asap.
Regards.
The Realist
10-07-2007, 09:19 AM
Thanks, the edits worked fine but my text is not aligned correctly, see attached pic and how can I change the section heading?
Regards.
The Realist
10-07-2007, 10:20 AM
Sections heading has been changed but if I add to much text, its not all alighned.
Any ideas?
Wired1
10-08-2007, 11:14 PM
This hack is PERFECT for what I need for two sites (horse message board and car club).
BTW, woot for Orlando, FL. I'm over by Unviersal Studioswahoo :)
Thanks, the edits worked fine but my text is not aligned correctly, see attached pic and how can I change the section heading?
Sections heading has been changed but if I add to much text, its not all alighned.
Any ideas?Not a clue. All my hack does is replace the vBulletin variable with one of my own creation, and displays it.
l3it3r
10-13-2007, 07:22 AM
Installed, working, thanks!
Arachnophiles
10-17-2007, 09:06 PM
Hi Wired1, and thanks for an awesome hack :D
I'm using this for members to list their collection and I've added some code to one of the template modifications in order to prevent the dropdown from being rendered off the page. It works ok for IE, but not in FF....does anyone have any ideas??? :confused:
In postbit:
FIND:
<!-- / post $post[postid] popup menu -->
After it post: (added code marked in red)
<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s PC Specs</td>
</tr>
<if condition="$post['field5']">
<tr><td width="500px" class="vbmenu_option">Motherboard: $post[field5]</td></tr>
</if>
<if condition="$post['field6']">
<tr><td width="500px" class="vbmenu_option">Processor: $post[field6]</td></tr>
</if>
<if condition="$post['field7']">
<tr><td width="500px" class="vbmenu_option"> You get the idea. Fill in the blanks!!! </td></tr>
</if>
</table>
</div>
<!-- / post specs_menu -->
Appreciate any suggestions.
Many thanks,
Adam.
Edit:
Nevermind, managed to sort it by changing the td class and order to:
<if condition="$post['fieldX']">
<tr><td class="alt2" width="670px"><b>X:</b> $post[fieldX]</td></tr>
</if>
Cheers,
Adam.
Wired1
10-18-2007, 06:41 PM
cool beans
Dave-M
10-24-2007, 09:13 PM
Hi Wired1,
Thanks for this :)
I posted in the other thread last week, and managed to get that part working, but am still struggling with this part.
I have this (http://www.extremepixels.com/forum/index.php?styleid=64) custom skin, and I have followed the instructions to the letter, and here is what I have.
https://vborg.vbsupport.ru/external/2007/10/7.png
https://vborg.vbsupport.ru/external/2007/10/8.png
https://vborg.vbsupport.ru/external/2007/10/5.png
As you can see, I dont have any extra options showing, but I do have the extra options in the User CP menu on the left.
If someone could point me in the right direction, i would be eternally greatful :)
Thanks.
Dave.
Wired1
10-25-2007, 12:24 AM
Hi Wired1,
Thanks for this :)
I posted in the other thread last week, and managed to get that part working, but am still struggling with this part.
I have this (http://www.extremepixels.com/forum/index.php?styleid=64) custom skin, and I have followed the instructions to the letter, and here is what I have.
As you can see, I dont have any extra options showing, but I do have the extra options in the User CP menu on the left.
When a new profile field is added, in the Display Page area, select Options: Extra Options (or whatever you placed in the extra_options vB Phrase)
Defkalion
10-25-2007, 11:33 AM
Great mod, many thanks! :)
Works fine, except this little problem;
Let's say I have 5 extra fields. IF a user enters all 5, they all appear ok in the drop down.
But if he SKIPS let's say the 3d field, the last two are not displayed in the drop down, even if they are filled in by the user. I checked my <if> </if> parts in the code and there doesn't seem to be any inconsistency.
Can you please help me out on this?
Again thanks for a great hack. :)
Wired1
10-25-2007, 04:47 PM
Yeah, it does scream as if there's an <if> somewhere. If you want to post or PM your dropdown code, I'll take a look at it.
Dave-M
10-25-2007, 07:23 PM
When a new profile field is added, in the Display Page area, select Options: Extra Options (or whatever you placed in the extra_options vB Phrase)
Thanks :)
Yep, already got that bit sorted, its just that theres no dropdown menu in the avatar area (postbit?).
Like this.
https://vborg.vbsupport.ru/external/2007/10/5.png
And this is what i have in the admincp.
https://vborg.vbsupport.ru/external/2007/10/6.png
:)
Defkalion
10-25-2007, 07:23 PM
Ok I found the problem, I had the same if condition="$post['field6'] twice. Sorry for the messup.
Thanks for offering to help :)
Wired1
10-28-2007, 05:18 AM
Dave, for the dropdown to be there, you need to add the dropdown code to the sidebar postbit. Hack only has instructions for the one w/ the user info above the post.
Dave-M
10-29-2007, 04:01 PM
Hi,
I put the code into the postbit_legacy template, but it still doesnt show the dropdown, so I set the forums to use the new postbit, and it still doesnt show.
Here's what I have for postbit templates in the admincp, and have tried it in both of the ones that are highlighted red.
https://vborg.vbsupport.ru/external/2007/10/3.png
Any ideas?
Thanks :)
Wired1
10-29-2007, 10:05 PM
Check the dropdown code for <if>. Most likely you left it in, and that particular field has no data in it, so the dropdown doesn't show up.
Dave-M
10-29-2007, 11:13 PM
Thanks :)
I've just searched in both the postbit templates for <if> and it comes up with "not found".
I'm cursed aren't I? :D
afmarko99
10-30-2007, 05:47 AM
I had this hack installed prior to the 3.6.8 update and everything was fine. I performed the update and re-installed the hack. THe dropdown in the post work fine but I can't get the Computer Specs to show up in user profiles anymore.
In the instructions it says:
FIND:
<if condition="$show['membergroups']">
<dl id="membergroups_list" class="smallfont">
$membergroupbits
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></div>
</if>
REPLACE WITH:
<if condition="$show['extrainfo']">
<dl id="additionalinfo_list">
$customfields2
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></div>
</if>
I don't have either one of those phrases. Help please.
Wired1
10-30-2007, 03:22 PM
Thanks :)
I've just searched in both the postbit templates for <if> and it comes up with "not found".
I'm cursed aren't I? :D
FIND:
<!-- / post $post[postid] popup menu -->
After it post:
<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s PC Specs</td>
</tr>
<tr><td class="vbmenu_option">Motherboard: $post[field5]</td></tr>
<tr><td class="vbmenu_option">Processor: $post[field6]</td></tr>
</table>
Wired1
10-30-2007, 03:36 PM
I had this hack installed prior to the 3.6.8 update and everything was fine. I performed the update and re-installed the hack. THe dropdown in the post work fine but I can't get the Computer Specs to show up in user profiles anymore.
In the instructions it says:
I don't have either one of those phrases. Help please.
Revert it to default template, and re-do the instructions. Please either remove my code from your post, or surround it with
Dave-M
10-30-2007, 06:46 PM
FIND:
<!-- / post $post[postid] popup menu -->
After it post:
<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s PC Specs</td>
</tr>
<tr><td class="vbmenu_option">Motherboard: $post[field5]</td></tr>
<tr><td class="vbmenu_option">Processor: $post[field6]</td></tr>
</table>
I'm completely lost now :)
I have replaced the old code from the instructions with that new code above, and still dont have the dropdown.
Wired1
10-30-2007, 07:22 PM
Let's take a step back. In the User CP, in the Edit Extra Options page, are there any fields there?
Dave-M
10-30-2007, 08:01 PM
I appreciate the help :)
Yep, I have those.
https://vborg.vbsupport.ru/external/2007/10/1.png
afmarko99
10-30-2007, 09:12 PM
Revert it to default template, and re-do the instructions. Please either remove my code from your post, or surround it with
I looked at the version I had from 3.6.4. It doesn't have the coding I need either. Cant' you just point out where I need to put the code. Below is my Memberinfo template.
Thanks
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title>
</head>
<body>
$header
$navbar
<!-- main info - avatar, profilepic etc. -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[view_profile]<span class="normal">: $userinfo[username]</span></td>
</tr>
<tr>
<td class="alt2">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="border-bottom:1px solid $stylevar[tborder_bgcolor]" width="100%" colspan="2">
<if condition="$userinfo['rank'] OR $userinfo['reputationdisplay']">
<div style="float:$stylevar[right]; padding:4px">
<if condition="$userinfo['rank']"><div align="center">$userinfo[rank]</div></if>
<if condition="$userinfo['reputationdisplay']"><div align="center">$userinfo[reputationdisplay]</div></if>
</div>
</if>
<div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>
<if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if>
</td>
<if condition="$show['profilepic']">
<td valign="top" align="$stylevar[right]" rowspan="2">
<img src="$userinfo[profilepicurl]" $userinfo[profilepicsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_picture]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" />
</td>
</if>
</tr>
<tr valign="top">
<if condition="$show['avatar']">
<td><img src="$userinfo[avatarurl]" $userinfo[avatarsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_avatar]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" /></td>
<else />
<td> </td>
</if>
<td class="smallfont" valign="bottom" align="$stylevar[right]">
<if condition="$show['lastactivity']">
<div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span> </div>
</if>
<if condition="$show['currentlocation']">
<div>$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time] </div>
</if>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- / main info - avatar, profilepic etc. -->
<!-- button row -->
<if condition="$show['profilelinks']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<if condition="$userinfo['showvcard']">
<td class="vbmenu_control"><a href="member.php?$session[sessionurl]do=vcard&u=$userinfo[userid]" rel="nofollow">$vbphrase[download_vcard]</a></td>
</if>
<if condition="$show['member']">
<td class="vbmenu_control">
<if condition="$show['addbuddylist']">
<a href="profile.php?$session[sessionurl]do=addlist&userlist=buddy&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_buddy_list]</phrase></a>
<else />
<a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[remove_x_from_your_buddylist]</phrase></a>
</if>
</td>
<td class="vbmenu_control">
<if condition="$show['addignorelist']">
<a href="profile.php?$session[sessionurl]do=addlist&userlist=ignore&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_ignore_list]</phrase></a>
<else />
<a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[remove_x_from_your_ignorelist]</phrase></a>
</if>
</td>
</if>
<if condition="can_moderate()">
<td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&u=$userinfo[userid]">$vbphrase[user_options]</a></td>
</if>
<if condition="$show['giveinfraction']">
<td class="vbmenu_control"><a href="infraction.php?$session[sessionurl]do=report&u=$userinfo[userid]">$vbphrase[give_infraction]</a></td>
</if>
</tr>
</table>
</if>
<!-- / button row -->
<br />
<if condition="$show['infractions']">
<!-- infractions row -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="$colspan"><span style="float:$stylevar[right]" class="smallfont"><phrase 1="$userinfo[ipoints]">$vbphrase[x_points_total]</phrase> </span>$vbphrase[infractions]</td>
</tr>
<tr>
<td class="thead" colspan="2"> $vbphrase[post]</td>
<td class="thead">$vbphrase[date]</td>
<td class="thead">$vbphrase[expires]</td>
<td class="thead">$vbphrase[points]</td>
<td class="thead">$vbphrase[reason]</td>
<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
<if condition="$show['reverse']"><td class="thead">$vbphrase[details]</td></if>
</tr>
$infractionbits
</table>
<if condition="$pagenav">
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-top:3px">
<tr valign="bottom">
<td align="$stylevar[right]">$pagenav</td>
</tr>
</table>
</if>
<!-- / infractions row -->
<br />
</if>
<if condition="$show['signature']">
<!-- signature row -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[signature]</td>
</tr>
<tr>
<td class="alt1" title="$vbphrase[signature]">$userinfo[signature]</td>
</tr>
</table>
<!-- / signature row -->
<br />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" width="50%">$vbphrase[forum_info]</td>
<td class="tcat" width="50%">$vbphrase[contact_info]</td>
</tr>
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[join_date]: <strong>$userinfo[datejoined]</strong>
</div>
</div>
<fieldset class="fieldset">
<legend>$vbphrase[posts]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>
$vbphrase[total_posts]: <strong>$userinfo[posts]</strong> (<phrase 1="$postsperday">$vbphrase[x_posts_per_day]</phrase>)
</td>
</tr>
<if condition="$vboptions['profilelastpost']">
<tr>
<td>
$vbphrase[last_post]:<br />
<a href="$userinfo[lastposturl]">$userinfo[lastposttitle]</a><br />
$userinfo[lastpostdate] <span class="time">$userinfo[lastposttime]</span>
</td>
</tr>
</if>
<tr>
<td><a href="search.php?$session[sessionurl]do=finduser&u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_posts_by_x]</phrase></a></td>
</tr>
<tr>
<td><a href="search.php?$session[sessionurl]do=process&showposts=0&starteronly=1&exactname=1&s earchuser=$userinfo" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_threads_started_by_x]</phrase></a></td>
</tr>
</table>
</fieldset>
<if condition="$vboptions['usereferrer']">
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[referrals]: <strong>$referrals</strong>
</div>
</div>
</if>
<if condition="$show['usernotes']">
<div class="fieldset">
<div style="padding:$stylevar[formspacer]px">
$vbphrase[user_notes]:
<if condition="$show['usernoteview']">
<strong>$usernote[total]</strong> [<a href="usernote.php?$session[sessionurl]u=$userinfo[userid]">$vbphrase[view]</a>]
</if>
<if condition="$show['usernotepost']">
[<a href="usernote.php?$session[sessionurl]do=newnote&u=$userinfo[userid]">$vbphrase[post_user_note]</a>]
</if>
<if condition="$show['usernoteview']">
<br />($vbphrase[last_note]: $usernote[lastpostdate] <span class="time">$usernote[lastposttime]</span>)
</if>
</div>
</div>
</if>
<!-- [START HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
<if condition="$show['userawards']">
<fieldset class="fieldset">
<legend>$vbphrase[award_showcase]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td align="center">
$userawards
</td>
</tr>
</table>
</fieldset>
</if>
<!-- [END HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
</div>
</div>
</td>
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<if condition="!$show['contactlinks']">
<tr>
<td><strong><phrase 1="$userinfo[username]">$vbphrase[x_has_no_contact_info]</phrase></strong></td>
</tr>
</if>
<if condition="$show['homepage']">
<tr>
<td>
$vbphrase[home_page]:<br />
<a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
</td>
</tr>
</if>
<if condition="$show['email']">
<tr>
<td>
$vbphrase[email]:<br />
<a href="sendmessage.php?$session[sessionurl]do=mailmember&u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[send_message_via_email_to_x]</phrase></a>
</td>
</tr>
</if>
<if condition="$show['pm']">
<tr>
<td>
$vbphrase[private_message]:<br />
<a href="private.php?$session[sessionurl]do=newpm&u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[send_private_message_to_x]</phrase></a>
</td>
</tr>
</if>
</table>
</div>
<if condition="$show['hasimicons']">
<fieldset class="fieldset">
<legend>$vbphrase[instant_messaging]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<if condition="$show['textimicons']">
<if condition="$userinfo['showicq']">
<tr>
<td>$vbphrase[icq]</td>
<td>$userinfo[icq]</td>
</tr>
</if>
<if condition="$userinfo['showaim']">
<tr>
<td>$vbphrase[aim]</td>
<td>$userinfo[aim]</td>
</tr>
</if>
<if condition="$userinfo['showmsn']">
<tr>
<td>$vbphrase[msn]</td>
<td>$userinfo[msn]</td>
</tr>
</if>
<if condition="$userinfo['showyahoo']">
<tr>
<td>$vbphrase[yahoo]</td>
<td>$userinfo[yahoo]</td>
</tr>
</if>
<if condition="$userinfo['skype']">
<tr>
<td>$vbphrase[skype]</td>
<td>$userinfo[skype]</td>
</tr>
</if>
<else />
<if condition="$userinfo['showicq']">
<tr>
<td>$userinfo[icqicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('icq', '$userinfo[userid]', 500, 450); return false;">$userinfo[icq]</a></td>
</tr>
</if>
<if condition="$userinfo['showaim']">
<tr>
<td>$userinfo[aimicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('aim', '$userinfo[userid]', 400, 200); return false;">$userinfo[aim]</a></td>
</tr>
</if>
<if condition="$userinfo['showmsn']">
<tr>
<td>$userinfo[msnicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('msn', '$userinfo[userid]', 400, 200); return false;">$userinfo[msn]</a></td>
</tr>
</if>
<if condition="$userinfo['showyahoo']">
<tr>
<td>$userinfo[yahooicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('yahoo', '$userinfo[userid]', 400, 200); return false;">$userinfo[yahoo]</a></td>
</tr>
</if>
<if condition="$userinfo['showskype']">
<tr>
<td>$userinfo[skypeicon]</td>
<td><a href="#" dir="ltr" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">$userinfo[skype]</a></td>
</tr>
</if>
</if>
</table>
</fieldset>
</if>
</div>
</div>
</td>
</tr>
<tr>
<td class="tcat" width="50%">$vbphrase[additional_information]</td>
<td class="tcat" width="50%">$vbphrase[extra_options]</td>
</tr>
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<if condition="$show['extrainfo']">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<if condition="$show['birthday']">
<tr>
<td>
<strong>$vbphrase[birth_date]</strong>:<br />
$userinfo[birthday]
</td>
</tr>
</if>
<if condition="$show['age']">
<tr>
<td>
<strong>$vbphrase[age]</strong>:<br />
$userinfo[age]
</td>
</tr>
</if>
$customfields
<if condition="!empty($userinfo[mood])">
<strong>$vbphrase[my_mood]:</strong>
<br />
<img src="images/mood/$userinfo[mood].gif" border="0" />
</if>
</table>
<else />
<em>$vbphrase[n_a]</em>
</if>
</div>
</div>
</div>
</td>
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[left]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<if condition="$show['extrainfo']">
<td></td>
<else />
<td><strong><em>$vbphrase[n_a]</em></td>
</if>
</tr>
$customfields2
</table>
</div>
</div>
</div>
</td>
</tr>
<!-- XFire Hack -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" width="100%">xFire Profile Info</td>
</tr>
<tr valign="top">
<td class="panelsurround" align="center">
<div class="panel">
<div align="$stylevar[center]">
<div class="fieldset">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<td><strong>$vbphrase[x_xfire_info]</phrase></strong></td>
<if condition="$post['field29']">
<a href="[URL]http://profile.xfire.com/$post[field29]" rel="nofollow"><img src=http://miniprofile.xfire.com/bg/$post[field30]/type/0/$post[field29].png width=440 height=111 border=0></a>
<br>
<p align="center"><a href="xfire:add_friend?user=$post[field29]" rel="nofollow"><b>Add to xFire Friends List</b></a></p>
</if>
</if>
</table>
</div>
</div>
</td>
<!-- / End XFire Hack -->
</table>
<!-- [START HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
$awards_showcase
<!-- [END HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
$footer
</body>
</html>
Wired1
11-01-2007, 12:39 PM
I looked at the version I had from 3.6.4. It doesn't have the coding I need either. Cant' you just point out where I need to put the code. Below is my Memberinfo template.
You don't have it because your memberinfo is already edited by another plugin. The code I said to search for is in the default page from Jelsoft. I remember posting the code to add another row of cells to the memberinfo page in either this thread, or the 3.5.x version.
Wired1
11-01-2007, 12:42 PM
Yep, I have those.
Hrm... Ok...
Have you:
uploaded the XML file?
Edited hooks_vbulletin.xml?
Edited member.php?
Edited MEMBERINFO template?
Edited postbit template (2 parts to edit)?
Dave-M
11-01-2007, 11:09 PM
Hrm... Ok...
Have you:
uploaded the XML file?
Edited hooks_vbulletin.xml?
Edited member.php?
Edited MEMBERINFO template?
Edited postbit template (2 parts to edit)?
Yep, redone it several times now, and thats why I'm completely stumped.
Could it be something to do with this custom skin? ( I mentioned it in my first post in this thread :))
Wired1
11-02-2007, 08:29 PM
Possibly.
lostgirl815
11-07-2007, 10:17 PM
I'm hoping somebody who knows how all this stuff works can answer a question for me. If I were to use this Mod with this mod (https://vborg.vbsupport.ru/showthread.php?t=123619), (the Profile Fields in Postbits Mod), would I be able to have images in the dropdown list? (I know I could just install them both and see for myself, but if somebody knows the answer offhand I'd appreciate it.)
Wired1
11-08-2007, 01:15 PM
My dropdown is the vBulletin one, which is text only, and the other plugin looks to be text only as well. I'd ask the creator of that one to be sure. What are you trying to accomplish exactly?
lostgirl815
11-08-2007, 10:48 PM
Thanks for your reply, Wired1. :) I was hoping to be able to put a selectable image in profile fields and have it show up on the dropdown list. So that (for example) if somebody wanted to show that they took part in an event, they'd have the option of checking off that information in their profile and then having the image/icon represent this.
Kind of how people have the option of showing their AIM name, which is represented by an icon.
(Hope that made sense.)
Wired1
11-09-2007, 01:54 PM
I think there are event icons built in, or it may be a plugin. May want to search for "attended event".
lostgirl815
11-09-2007, 09:36 PM
That never even occurred to me - thanks!
Maxus
11-10-2007, 02:04 PM
Thank you so much for this hack. I am going to use it for users VC in profiles.
And it should be great, if you help to set up the search through this fields, by Advanced Memberlist Search...
Defkalion
11-10-2007, 03:15 PM
I've probably done something wrong, because now every user that registers to my forum has by DEFAULT the first field filled in with the default [extra_options] phrase I'm using.
I've tried to find the solution but came up empty. Can you please assist where this problem would reside? Thanks.
Edit: never mind, I figured it out. :)
Booost This
11-10-2007, 10:20 PM
I can't get this to work, I have gone over the instructions for both of your hacks 3 times and verified the code is in the right place and the plugins/products are imported.
It works to the point of showing up the links in the USER CP, I create a new profile field and it does not show up in the user profile or CP to even enter the values.
Also the dropdown does not show up in the post. I don't get it?
Any help you can give would be great. Otherwise I guess I will just uninstall it because I am honestly lost.
TIA.
Defkalion
11-11-2007, 05:46 AM
About the User CP: when you create the new profile field, do you select at the bottom the "options:extra options" at the Display Page part?
About the dropdown, did you insert the code in the correct postbit template? for example, I do not use the "postbit" template, but the "postbit_legacy", so I inserted the code there.
Wired1
11-12-2007, 02:35 PM
Thank you so much for this hack. I am going to use it for users VC in profiles.
And it should be great, if you help to set up the search through this fields, by Advanced Memberlist Search...VC = Virtual Console, as in the Wii?
I can't get this to work, I have gone over the instructions for both of your hacks 3 times and verified the code is in the right place and the plugins/products are imported.
It works to the point of showing up the links in the USER CP, I create a new profile field and it does not show up in the user profile or CP to even enter the values.The problem you have is with the other plugin, not this one. Please post in that one (and delete your post here) so that the threads are better organized for readers. Please answer in the new post if you have set the new profile field to be in the Extra Options group (which is what Defkalion asked). Also, does it show up in te Extra Profile Field Page?
Maxus
11-12-2007, 02:53 PM
VC = Virtual Console, as in the Wii?
No, i mean summary, for human resource services.
But it doesn't matter.
I just want to know, how can include this extra profile field in search page on memberlist?
Now I can only include the fields from "Edit profile" zone.
Wired1
11-12-2007, 05:27 PM
No, i mean summary, for human resource services.
But it doesn't matter.
I just want to know, how can include this extra profile field in search page on memberlist?
Now I can only include the fields from "Edit profile" zone.curriculum vitae, gotcha :)
It requires further hacking of the members list. I think in the 3.5.x version, I had some untested code at the end of the instructions that would do this, but I don't think it fully worked.
tom209
11-15-2007, 01:46 PM
Hi,
This is something I wanted. Thank you
I have everything installed and works almost everything. Now, when I read a contribution will not Dropdown down, as seen in this picture:
https://vborg.vbsupport.ru/attachment.php?attachmentid=51733&d=1154919531
Does anyone have an idea?
Did the version: 3.6.8 Patch Level 2
Can someone please help me?
Sorry for my English
Wired1
11-16-2007, 05:23 AM
DId you install the Parent Plugin, Extra Profile Fields Page (https://vborg.vbsupport.ru/showthread.php?t=123253)?
tom209
11-16-2007, 10:39 AM
Hi,
Thank you for the answer. Yes, in the installed. Got everything done according to instructions but I did not drop down
Here are a few pictures:
http://www.pcwango.de/test/vb/1.gif
http://www.pcwango.de/test/vb/2.gif
http://www.pcwango.de/test/vb/3.gif
http://www.pcwango.de/test/vb/4.gif
Can I ask someone Help
Thank you
Wired1
11-16-2007, 06:26 PM
Did you do this step in the instructions? If so, is the field ID in that code the same as the field ID of the field named test1?
vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> Postbit Templates -> postbit
FIND:
<!-- / post $post[postid] popup menu -->
After it post:
<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$post[username]'s PC Specs</td>
</tr>
<if condition="$post['field5']">
<tr><td class="vbmenu_option">Motherboard: $post[field5]</td></tr>
</if>
</table>
</div>
<!-- / post specs_menu -->
tom209
11-18-2007, 09:16 PM
Hi
So I have done as on the steps. Here is a picture:
http://www.pcwango.de/test/te.png
Do you have a solution?
THANKS
Wired1
11-19-2007, 12:27 PM
What about this part?
vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> Postbit Templates -> postbit
FIND:
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
After it post:
<!-- post specs_menu -->
<if condition="$post['fieldX']">
<div id="specs_$post[postid]" class="vbmenu_control">
<a href="#specs">$post[username]'s PC Specs</a>
<script type="text/javascript"> vbmenu_register("specs_$post[postid]"); </script>
</div>
</if>
<!-- / post specs_menu -->
Arachnophiles
11-26-2007, 08:19 AM
Hey Wired1, just wanted to say how pleased I am with your commitment to future development of this modification in line with the recent announcement of vB 3.7......Thank YOU!!
I'll be happy to help with any testing etc.
Cheers,
Adam.
Wired1
11-27-2007, 04:51 AM
No problemo :)
RedGTiVR6
11-27-2007, 05:43 PM
I'm pleased as well!
This mod has become an invaluable part of our forums.
Now I just have one problem...getting these fields to be searchable on the member search window.
I've seen a few references to it, but nothing concrete. Is this difficult to do or just too time consuming right now?
Again, thanks for the continued committment!
Wired1
11-28-2007, 02:27 PM
Both. I never even wrote the original BETA code that sometimes would let you have these extra profiles be searchable. I think that was 3.0 or 3.5 when that code was around. It'd take me a while to get around to it, and then code it. If anyone wants to code it and make it an add-on, feel free :) I'd wait until 3.7 though.
Dave-M
12-16-2007, 02:21 AM
Hi Wired1,
I finally managed to get this working with my custom skin, it was a rougue "IF".
I have a quick question.
I use the new style postbit, and the dropdown appears on the left, underneath the username of the person. Is it possible to put it on the right hand side, underneath "Join Date, Post Count, Thanks" etc?
Thanks bud! :)
Dave.
Wired1
12-16-2007, 08:05 PM
Yes, you'd just have to figure out where to place that code.
gundarN
12-17-2007, 08:26 PM
Just a quick post to say using your mod on 3.6.x was great and now that I have gone to 3.7 beta 2 I am looking forward to your next release.
Keep up the good work.
shcchief
12-19-2007, 02:37 AM
Great mod,
I seem to be having a problem...I've got the mod working fine but only for myself it seems.
I got another member to fill everything in, and nothing appeared in the postbit for his posts...it was as if the mod wasn't installed (i.e. no extra dropdown bar, nothing).
Any ideas?
cbiweb
12-20-2007, 01:17 PM
In the instructions, there's a line that says:
"New Hook Location: vBulletin: Member's Profile -> member_extras (see? I told you it would create a new hook!)"
Where exactly is 'vBulletin: Member's Profile -> member_extras'? I have no idea where I'm supposed to see that.
shcchief
12-21-2007, 01:57 AM
In the instructions, there's a line that says:
"New Hook Location: vBulletin: Member's Profile -> member_extras (see? I told you it would create a new hook!)"
Where exactly is 'vBulletin: Member's Profile -> member_extras'? I have no idea where I'm supposed to see that.
I couldn't either, I didn't worry about it though (well I don't think I did...I remember thinking wtf??) perhaps this could be the source of my problem in my post above?
Cant wait for a 3.7 release either :up: :D
fmntprsv
12-25-2007, 09:07 PM
Hi everybody. Please excuse my poor english. I?m trying to install this hook, but it doesn?t work.
Well, i have to do all the steps of the instructions, but it?s impossible, doesn?t work. You can see it at: www.razorman.net/forodeinformatica.
Please help me!
shcchief
12-29-2007, 03:52 AM
Hi everybody. Please excuse my poor english. I?m trying to install this hook, but it doesn?t work.
Well, i have to do all the steps of the instructions, but it?s impossible, doesn?t work. You can see it at: www.razorman.net/forodeinformatica.
Please help me!
Assuming you've installed the hook, you will need to do this as well.
Click on that option
http://members.optusnet.com.au/salcon/click here first.JPG
Then make all these
http://members.optusnet.com.au/salcon/then make all these.JPG
Then choose this option for each field
http://members.optusnet.com.au/salcon/then choose this option for each field.JPG
Hope that helps anyway...
shcchief
12-29-2007, 03:53 AM
As for my problem...I've got the mod working fine but only for myself it seems.
I got another member to fill everything in, and nothing appeared in the postbit for his posts...it was as if the mod wasn't installed for them (i.e. no extra dropdown bar, nothing).
Any ideas?
fmntprsv
12-29-2007, 08:30 AM
Thanks for your interest scchief, that?s the problem , i don?t have these field, see you:
https://vborg.vbsupport.ru/external/2007/12/3.jpg
so, ?i must to have to add manually the field "Power supply"? , excuse my ignorance please...
:)
shcchief
12-30-2007, 09:59 AM
Yeah mate, you make them yourself (whatever fields you want) and as you make each one, you select which page you want those fields to display on (look at the picture, for me it says "Options:Edit PC Specs") from the drop down box.
But yes, you have to make the fields yourself.
fmntprsv
12-30-2007, 06:13 PM
Well shcchief the solution of this trouble it?s pretting closer, i think!
you select which page you want those fields to display on (look at the picture, for me it says "Options:Edit PC Specs") from the drop down box.
But yes, you have to make the fields yourself.
I was doing these steps and now appear in the profile, see the image:
https://vborg.vbsupport.ru/external/2007/12/2.jpg
Well, in order to appear these fields, the help of the forum says:
User profile fields can be displayed in posts next to the author's name. If you want to display a profile field in posts then you need to edit your postbit or postbit_legacy template (depending on which one you use as is indicated by the "Use Legacy (Vertical) Postbit Template" option in your vBulletin options) and add $post[fieldX] where X is the field ID of the profile field as shown under the "Name" column on this page.
I use postbit_legacy in my forum, but i don?t know how i can post these fields ( field12, field13, field14) on this.
?Can anybody help me?
Thanks a lot!!!!
shcchief
01-03-2008, 07:00 AM
You simply replace X with the number of the field.
You will have to scroll across here to see what words I used, for example Mobo, CPU, GFX etc. Just make sure the fields tie up with each other.
Here is my postbit_legacy for this mod.
<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<if condition="$post['field6']">
<tr><td class="vbmenu_option"><b><font color=#00FF00>Mobo:</b></font> $post[field6]</td></tr>
</if>
<if condition="$post['field7']">
<tr><td class="vbmenu_option"><b><font color=#FF9900>CPU:</b></font> $post[field7]</td></tr>
</if>
<if condition="$post['field12']">
<tr><td class="vbmenu_option"><b><font color=#00FF00>GFX:</b></font> $post[field12]</td></tr>
</if>
<if condition="$post['field8']">
<tr><td class="vbmenu_option"><b><font color=#FF9900>RAM:</b></font> $post[field8]</td></tr>
</if>
<if condition="$post['field9']">
<tr><td class="vbmenu_option"><b><font color=#00FF00>Sound:</b></font> $post[field9]</td></tr>
</if>
<if condition="$post['field10']">
<tr><td class="vbmenu_option"><b><font color=#FF9900>PSU:</b></font> $post[field10]</td></tr>
</if>
<if condition="$post['field11']">
<tr><td class="vbmenu_option"><b><font color=#00FF00>O/S:</b></font> $post[field11]</td></tr>
</if>
</table>
</div>
<!-- / post specs_menu -->
Wired1
01-07-2008, 01:19 PM
Where exactly is 'vBulletin: Member's Profile -> member_extras'? I have no idea where I'm supposed to see that.I couldn't either, I didn't worry about it though (well I don't think I did...I remember thinking wtf??) perhaps this could be the source of my problem in my post above?Don't worry about it, just for developers, kind of a joke.
fmntprsv, did you install the parent plugin, Extra Profile Fields Page (https://vborg.vbsupport.ru/showthread.php?t=123253)?
shcchief, what version of vB do you have? Says 2.1.1 in your profile here. Do you have a link to your forum?
Dinatius
01-13-2008, 06:09 AM
Got the base for this installed correctly, after a bit of poking. First time on vB admin side and just getting started.
I can get the quadrant to show up right with modified title, but I can't get the field to populate. Like I said, I got the parent plugin installed and working, with filled-out fields to work with. Suggestions on where to start looking for noob mistakes in my install?
Got this as well:
Parse error: syntax error, unexpected '<' in ...member.php(623) : eval()'d code on line 1
I'm not worried about getting the dropdown - it's not something I need for my site - just the info quadrant.
Wired1
01-14-2008, 05:28 AM
Got a link to your forum? Also, what version of vB do you have?
Dinatius
01-14-2008, 05:46 AM
<a href="http://the-watch.net/forums/" target="_blank">the-watch.net/forums</a>
Running vB 3.6.8PL2
Not all users have it filled in, but the one that matches my forum name here is completed within the usercp - custom page.
Edit: Found the answer to searchable fields - anyone looking, check out the thread for Wired's base mod.
fmntprsv
01-14-2008, 05:26 PM
Well, i was done all and this is the result:
https://vborg.vbsupport.ru/external/2008/01/27.jpg
As you see, now it appears EXTRA OPTIONS (see the red rectangle) but not appear the fields. ?What can i do?
Thanks a lot about your interest!
Wired1
01-14-2008, 06:16 PM
Dinatius and fmntprsv, this should help you both:
Go to AdminCP. On the menu bar to the left, go to User Profile Fields -> User Profile Field Manager.
Edit a field that you would like in their profile. Go to the last option, and change the Option to the last option like below (Mine's customized):
74561
Any field that is marked as such should show up in the lower quadrant (if you are using this plugin) as well as show up in the extra profile page (using the parent plugin).
Dinatius
01-14-2008, 06:23 PM
I got that far, PMing you login info so I can stop fumbling words trying to explain.
fmntprsv
01-15-2008, 07:58 PM
It´s impossible, i don´t know because it can´t work....
I persevere
Wired1
01-24-2008, 01:33 AM
fmntprsv, did you imoprt the plugin?
Dinatius, no idea, something's just missing. undo the steps and re-do them.
Dinatius
01-24-2008, 06:51 AM
Couldn't figure it out, but I wanted to work on searchable along with the display - if there's interest I may look into putting it up as an add-on module for vba.
fmntprsv
01-24-2008, 07:11 AM
Yes wired1 i´m was importing the plugin, and doesn´t work. A pity because it needed to operate. But I am unable
Wired1
01-24-2008, 03:16 PM
D: What do you mean "along with the display"?
fmntprsv: Don't know what to tell you.
Dark Fury
02-21-2008, 01:51 AM
I have the extra options mod installed, and it was working fine.
Tried installing this (following instructions up to the popup menu bit, didnt want that) but then when attempting to view a member profile i get a blank page.
So i turned off this plugin and profiles work again.... i'm thinking i've not got the values for the following correct:
Execution Order Use this field to enter the order in which code at the same hook will be executed.
Plugin PHP Code Use this field to enter the PHP code that you would like to be run.
I had 5 in the first one by default, and just put 'member.php' in the second and i assume thats where i've gone wrong...
My site is www.49CMD.com
Wired1
02-22-2008, 02:12 PM
If you follow the instructions and only skip the end of the instructions where it has the dropdown instructions, the memberpage should work fine, there's no editing like you mentioned in said instructions.
Jase2
02-22-2008, 02:23 PM
Hello Wired1,
I'll be installing this great hack once you release it for 3.7.
I have one question, you have your "My system Specs" in the postbit with a blue background. Do you have to have the small blue background, or can you just have it with the writing "My system Specs" and the drop down button?
Regards Jason :)
PaulSonny
02-22-2008, 10:34 PM
Excellent modification and will be installing once their is a version for 3.7.
Thanks, Paul.
Wired1
02-23-2008, 01:02 AM
Hello Wired1,
I'll be installing this great hack once you release it for 3.7.
I have one question, you have your "My system Specs" in the postbit with a blue background. Do you have to have the small blue background, or can you just have it with the writing "My system Specs" and the drop down button?
Regards Jason :)
I have answered this question from you last week in the parent plugin's thread. It is based upon your forum's template. The dropdown is completely vBulletin's code, and is not modified by myself in any way.
nice hack. i have this and the other one working together just fine except for one thing, it doesnt display the custom fields on the profile page. drop down works perfect. extra options editing page works perfectly. any suggestions?
Dark Fury
02-23-2008, 06:55 AM
What do i put in the box "Plugin PHP Code" when adding the new plugin?
Wired1
02-24-2008, 05:53 AM
nice hack. i have this and the other one working together just fine except for one thing, it doesnt display the custom fields on the profile page. drop down works perfect. extra options editing page works perfectly. any suggestions?Did you edit the page like the instructions say?
What do i put in the box "Plugin PHP Code" when adding the new plugin?You don't create the plugin. Go to Download / Upload Plugins and Import it.
Guest210212002
02-24-2008, 10:43 PM
/me anxiously awaits the 3.7 version
Dark Fury
02-24-2008, 11:59 PM
You don't create the plugin. Go to Download / Upload Plugins and Import it.
Sorted. Please excuse me. Thankyou for these mods, they are perfect for my site. :)
Wired1
02-25-2008, 05:30 PM
Sorted. Please excuse me. Thankyou for these mods, they are perfect for my site. :)
Thanks, please hit install! :)
Hades-1
02-26-2008, 07:19 PM
im 100% positive i did it right but its not showing up, the group memberships section is now blank, its not showing the custom fields for some reason!
Wired1
02-26-2008, 07:28 PM
Have you marked profile fields as the new type of profile field?
Hades-1
02-26-2008, 07:36 PM
Have you marked profile fields as the new type of profile field?
what do you mean?
in admincp i add a new field and for display page i choose options: extra options.
i did file edits right, i mean the stuff that was in the membergroups area is now gone, but the custom fields i made wont show up.
Wired1
02-26-2008, 08:05 PM
Got a link to your forum? You have entered in information for said profile fields in your UserCP right?
Hades-1
02-26-2008, 08:16 PM
Got a link to your forum? You have entered in information for said profile fields in your UserCP right?
http://xboxnode.com/beta/zone/member.php?u=1
and yes i added the info, i went into userCP and click on extra options as its titled and enter data into the fields i created, like i said it just doesnt show up for some reason, i can past the code to my memberinfo template if you want...
Did you edit the page like the instructions say?
You don't create the plugin. Go to Download / Upload Plugins and Import it.
yup. i followed the instructions 3 times and all 3 times nothing..
Wired1
02-27-2008, 12:12 PM
http://xboxnode.com/beta/zone/member.php?u=1
and yes i added the info, i went into userCP and click on extra options as its titled and enter data into the fields i created, like i said it just doesnt show up for some reason, i can past the code to my memberinfo template if you want...Yeah, PM me the template.
yup. i followed the instructions 3 times and all 3 times nothing..Try disabling other plugins. Got a link to your forum?
Hades-1
03-02-2008, 12:21 PM
Yeah, PM me the template.
Try disabling other plugins. Got a link to your forum?
i pm'ed u the template a few days ago, did u check it out?
Wired1
03-03-2008, 05:18 AM
Sorry, thought PM Notification via Email was on, it wasn't.
MEMBERINFO template in the PM looks fine. I think it's working though, as I see on the member page listed above a block called XBOX with some profile info. Can you confirm this? If so, have you changed anything, and if so, what?
Conner85
04-06-2008, 01:32 AM
For some reason, when I add <hook>member_extras</hook> inside of /includes/xml/hooks_vbulletin.xml, it doesn't create another hook. And nothing "extra" shows up in my profile either. I have installed the first hack with the xml file as well as all of the other changes. I have no clue as to why it isn't working.
The dropdown menu is working just fine.
Conner85
04-06-2008, 01:52 AM
what do you mean?
in admincp i add a new field and for display page i choose options: extra options.
i did file edits right, i mean the stuff that was in the membergroups area is now gone, but the custom fields i made wont show up.
Didn't see this post before I made my last one. But this is the same problem I'm having.
Wired1
04-06-2008, 03:32 AM
What version of vB do you have?
Conner85
04-06-2008, 04:51 AM
3.6.9
viper357
04-06-2008, 07:57 AM
Wired1
I'm having a problem. Everything is looking fine and working well, except for the Memberinfo page, it looks fine until data is entered and it then breaks the format and the data is displayed all over the place.
Could it be my memberinfo template?
viper357
04-06-2008, 08:00 AM
Here is a user with no info, 100%
http://www.marineaquariumsa.com/member.php?u=770
Here is my profile with info added - :(
http://www.marineaquariumsa.com/member.php?u=1
Wired1
04-06-2008, 08:37 AM
3.6.9Haven't tested on that yet. I'll see what I can do, but I don't recall reading anything in it that would affect this mod.
I'm having a problem. Everything is looking fine and working well, except for the Memberinfo page, it looks fine until data is entered and it then breaks the format and the data is displayed all over the place.
Could it be my memberinfo template?Looks like the edit was done wrong. Revert the template and try again.
stemmy
04-08-2008, 03:47 PM
Great Hack !!!!
I have installed everything and made all the code changes. - It works perfectly.
one question.
How do i change the title of the section in the usercp ?
Currently its called "Extra Options" I would like to call it "Experience"
I run a photography forum and this drop down menu is perfect for showing peoples photography experience. But it will be confusing in the usercp if its called "Extra options".
thanks in advance
Ive clicked installed !!!!!
viper357
04-08-2008, 04:05 PM
Looks like the edit was done wrong. Revert the template and try again.
Worked perfectly, thanks :up:
Great Hack !!!!
I have installed everything and made all the code changes. - It works perfectly.
one question.
How do i change the title of the section in the usercp ?
Currently its called "Extra Options" I would like to call it "Experience"
I run a photography forum and this drop down menu is perfect for showing peoples photography experience. But it will be confusing in the usercp if its called "Extra options".
thanks in advance
Ive clicked installed !!!!!
Go into your admincp >> Languages and Phrases >> Search in Phrases
In the search box enter edit_extra_options
Choose Phrase Variable Name Only
Click Edit when it finds the results
Click Copy Default Text and enter whatever you want then save.
Wired1
04-08-2008, 05:10 PM
viper357: kewlness
stemmy: yeah, what he said
stemmy
04-08-2008, 05:50 PM
Your the man !!!!!!!!!!!
Thanks !!!!!
if you want to see it workin - its here
www.photography-forum.org
I use it for poeple to let us know their experience in photography before we make comments on their images.
Works a treat. Great hack !!!!!!
Worked perfectly, thanks :up:
Go into your admincp >> Languages and Phrases >> Search in Phrases
In the search box enter edit_extra_options
Choose Phrase Variable Name Only
Click Edit when it finds the results
Click Copy Default Text and enter whatever you want then save.
Wired1
04-08-2008, 06:26 PM
Thanks!
nighthalk
04-15-2008, 07:32 AM
ok so I installed this. Everything works but the popup menu in the postbit. It shows but it just don't pop open. I running 3.6.9. Like I see Nightha|k's System Specs. but it dont drop down I followed your directions fine.
Wired1
04-15-2008, 07:57 AM
What's the URL to the forum? Which postbit are you using: the new or the classic one?
nighthalk
04-15-2008, 09:46 AM
This is the correct thread as were talking about the drop down. I am using the postbit legacy. You can only see it under my name as I jut installed it and am the only one to fill it out.
Here is the site here (http://www.elitehackers.info/forums/showthread.php?t=15745)
Wired1
04-15-2008, 04:50 PM
Either one of the 2 edits weren't done that activate the dropdown, and/or not all profile fields are filled out.
nighthalk
04-15-2008, 05:08 PM
Edit: Removed code since it is not needed.
Wired1
04-15-2008, 09:27 PM
Do you have a test account (standard access) that I can log in with? For example, does field 23 have something in it?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.