vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Additional Section within Profile and Dropdown within Posts (https://vborg.vbsupport.ru/showthread.php?t=98753)

Wired1 02-04-2006 09:32 PM

It's already using the same vB function that Quick Links uses.

eNforce 02-04-2006 09:40 PM

Yeah, i mean like what pipin has above, just text

Wired1 03-16-2006 05:37 AM

Damn vB notifier didn't tell me there was a reply, sorry!

He'd have to post the code, then I could see about integrating it if people wanted.

Zia 03-16-2006 07:26 AM

i never notice this one...got another one...called "My System Spec in Postbit". It Looks like kool..

klickss install.

Wired1 03-16-2006 01:50 PM

Quote:

Originally Posted by Zia
i never notice this one...got another one...called "My System Spec in Postbit". It Looks like kool..

klickss install.

Assuming you meant this hack, thanks! Don't forget to hit install on the hack that you need for this one to work:
https://vborg.vbsupport.ru/showthread.php?t=98282

SMO 03-17-2006 02:35 AM

i cant find this step...

"plugin System -> Add New Plugin

Hook Location: vBulletin: Profile / Option Updates -> member_extras

Title: Extra Member Fields"

nvm..i figured it out perhaps.

I still cant seem to actually get the drop down to appear though

thx for the reply on HoH

Wired1 03-17-2006 11:56 AM

Do you have info in the specific fields? Did you install the other hack? Do you have a link to the forum in question? Also, please hit the Install button!

SMO 03-17-2006 12:57 PM

heh.

1 yes
2 yes
3 www.slaptardcentral.com
4 i just did.

thanks for the reply

Wired1 03-19-2006 02:19 AM

The location of the dropdown is in an area for a different post view, where the poster info is above the post, not to the side. You'd just have to move that.

dlan 04-05-2006 09:20 AM

In the dropdown menu i can't make multiple-selection-checkbox fields to show... it just show numbers... :(

Wired1 04-08-2006 03:15 AM

Quote:

Originally Posted by dlan
In the dropdown menu i can't make multiple-selection-checkbox fields to show... it just show numbers... :(

dropdown AND multiple checkboxes? Huh?

Tested Multiple checkboxes, worked fine. Can you be more specific?

SMO 07-04-2006 03:33 AM

I am having issues with this and kinda would like to get rid of the extra stuff now.

How do I "uninstall" the extra stuff like the profile hooks and drop down on postbit.

I went thru the changes and thought I got it all that I added with the readme but some users still have the features available.

Wired1 07-04-2006 06:19 AM

Go through the instructions step by step. If you've added code, remove it. Make sure you go through each of your templates, and remember to turn off the plugin.

What types of issues are you having?

barryhand 08-02-2006 07:50 AM

Hi, Great Mod.

At the moment its showing up based on one field condition, any way to enable it based on multiple fields

Say if Field11 or 12 or 13 exist?

<if condition="$post['field11']"> ??

//EDIT

Got it
<if condition="$post['field10'] OR $post['field11'] OR $post['field12']">

paul41598 08-03-2006 03:52 PM

Wired:

I made an extra profile page as per your instructions here:
https://vborg.vbsupport.ru/showpost....&postcount=192

I've installed this hack now to show it in memberinfo template and it keeps grabbing my first original custom profile page extra, and not getting extra2. How do I fix this?

paul41598 08-03-2006 05:04 PM

n/m, figured it out

Wired1 08-03-2006 05:08 PM

Kewl, glad to see you both got it worked out. Don't forget to hit install Paul :)

Jeordie015 08-06-2006 09:58 PM

If this has already been asked, I didn't see it. Is there a way to have it so it will show a message in the table in the additional section in the profile instead of leaving it blank if the user doesn't enter anything for those fields?

Wired1 08-06-2006 11:41 PM

could just replace the n/a message line with whatever message you'd like, but I would code it into the template, don't replace the phrase or it will show up in other unintended places.

Xorlev 08-07-2006 01:17 AM

Does not work in 3.6.0 due to changed table schema. Fix below:

Change:
PHP Code:

$profilefields $db->query_read("
    SELECT profilefieldid, required, title, type, data, def, height
    FROM " 
TABLE_PREFIX "profilefield
    WHERE form = 6 " 
iif(!($permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseehiddencustomfields']), "
        AND hidden = 0"
) . "
    ORDER BY displayorder
"
); 

TO:

PHP Code:

$profilefields $db->query_read("
    SELECT profilefieldid, required, phrase.text AS title, type, data, def, height
    FROM " 
TABLE_PREFIX "profilefield, " TABLE_PREFIX "phrase
    WHERE form = 6 " 
iif(!($permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseehiddencustomfields']), "
        AND hidden = 0"
) . " AND phrase.varname = CONCAT('field', profilefieldid, '_title')
    ORDER BY displayorder
"
); 


Wired1 08-07-2006 01:39 AM

Quote:

Originally Posted by Xorlev
Does not work in 3.6.0 due to changed table schema.

Well, considering it's a 3.5.x hack, that would explain why it's not compatible, now wouldn't it. Patience.

Wired1 08-07-2006 02:04 AM

Link to 3.6.0 version:
https://vborg.vbsupport.ru/showthread.php?t=123254

Xorlev 08-07-2006 04:36 AM

Yes, I know that it's a 3.5.x hack. It was on my forum when I upgraded and noticing no new version I fixed it myself and decided to post the fix for everyone else. No need to be snippy about it.

Wired1 08-07-2006 11:57 AM

Not being snippy, just pointing out that it's clearly marked as 3.5.x, not 3.6.0.

Jeordie015 08-13-2006 05:36 AM

Quote:

Originally Posted by Wired1
could just replace the n/a message line with whatever message you'd like, but I would code it into the template, don't replace the phrase or it will show up in other unintended places.

Well for at least one member, it's not showing the N/A message. I haven't fiddled with it to see why. Maybe they put something in there and took it out? Anyway, I'm a little picky, so I was just wondering if there was a way to keep that from happening.


All times are GMT. The time now is 11:09 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01112 seconds
  • Memory Usage 1,775KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (25)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete