Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Extra Profile Fields Tab Details »»
Extra Profile Fields Tab
Version: 1.1.2, by Wired1 Wired1 is offline
Developer Last Online: Dec 2021 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.8.x Rating:
Released: 03-14-2009 Last Update: 04-21-2009 Installs: 124
Uses Plugins
 
No support by the author.

Note to all: Yes I will be upgrading this mod if needed to work with vB 4.0, but not before it goes gold on or around the ETA of December 21st. I personally wouldn't recommend anyone upgrade their forum for a couple weeks after it comes out so that the modding community has a chance to test their code on the gold version.

=============================
Don't forget to hit INSTALL!

This product requires my Extra Profile Fields Page product. This product places the Extra Profile Fields into a new tab on the user's Public Profile.

To Install:
1) Save the attached product-extratab.xml file.
2) Navigate to AdminCP -> Plugins & Products -> Manage Products -> [Add/Import Product]
3) Browse to wherever you saved the file.
4) Import!


NOTE: Support will only be given to those who have hit install.

Don't forget to hit INSTALL!

Download Now

File Type: xml product-extratab.xml (6.8 KB, 536 views)

Screenshots

File Type: jpg tab.jpg (19.3 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #72  
Old 05-13-2013, 04:35 PM
ludachris ludachris is offline
 
Join Date: Feb 2002
Posts: 287
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Considering using this as a the basis for vehicle sub-profiles instead of some of the other plugins that are out there. I'm wondering if it would be possible to have an avatar associated with each tab. And maybe a mini photo gallery for each tab. And then finally, have an option for the tab to display under the username in postbit. Or at the very least, figure out a way to throw in some code that checks to see if the user has tab ID # and then display it in some templates - if tab ID 3 is not empty, then display this html here.
Reply With Quote
  #73  
Old 05-14-2013, 12:35 AM
Wired1's Avatar
Wired1 Wired1 is offline
 
Join Date: Nov 2003
Location: Orlando, FL, USA
Posts: 1,361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ludachris View Post
Considering using this as a the basis for vehicle sub-profiles instead of some of the other plugins that are out there. I'm wondering if it would be possible to have an avatar associated with each tab. And maybe a mini photo gallery for each tab. And then finally, have an option for the tab to display under the username in postbit. Or at the very least, figure out a way to throw in some code that checks to see if the user has tab ID # and then display it in some templates - if tab ID 3 is not empty, then display this html here.
It's outside the realm of this mod, but I suppose it could be done. The easiest way would be to have two fields:

field a - pictureID from an album for the avatar
field b - albumID for the photo gallery

Then some swanky code for the pics (or just re-use the vB gallery code).
Reply With Quote
  #74  
Old 11-27-2016, 11:57 AM
Inna Inna is offline
 
Join Date: Jul 2016
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm using vB 4.2.3 PL 2, and I'm having both Extra Profile Fields Page and Extra Profile Fields Tab, but when the Tab product is enabled, it shows error on the header of profile member page:
Code:
PHP User Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: memberinfo_css_EPFP_tab in ..../includes/functions.php on line 4602

PHP User Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: memberinfo_profilefield in ..../includes/functions.php on line 4602
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home/speciali/domains/special.ir/public_html/forum/member.php(599) : eval()'d code(176) : eval()'d code on line 2 
PHP User Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: memberinfo_profilefield in ..../includes/functions.php on line 4602
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home/speciali/domains/special.ir/public_html/forum/member.php(599) : eval()'d code(176) : eval()'d code on line 2 
PHP User Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: memberinfo_profilefield in ..../includes/functions.php on line 4602
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home/speciali/domains/special.ir/public_html/forum/member.php(599) : eval()'d code(176) : eval()'d code on line 2 
PHP User Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: memberinfo_profilefield in ..../includes/functions.php on line 4602
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home/speciali/domains/special.ir/public_html/forum/member.php(599) : eval()'d code(176) : eval()'d code on line 2 
PHP User Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: memberinfo_profilefield in ..../includes/functions.php on line 4602
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in /home/speciali/domains/special.ir/public_html/forum/member.php(599) : eval()'d code(176) : eval()'d code on line 2
Before this time, I've used this product with no error, but seems today it's showing error.

In the line 4602 functions.php:
Code:
trigger_error('fetch_template() calls should be replaced by the vB_Template class. Template name: ' . htmlspecialchars_uni($templatename), E_USER_WARNING);
and in line 599 member.php, it is:
Code:
($hook = vBulletinHook::fetch_hook('member_build_blocks_start')) ? eval($hook) : false;
What should I do? Any comments rather than disabling this product?

PHP version is 5.6.28
Reply With Quote
  #75  
Old 11-27-2016, 06:43 PM
Wired1's Avatar
Wired1 Wired1 is offline
 
Join Date: Nov 2003
Location: Orlando, FL, USA
Posts: 1,361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've never seen those errors before. How'd you install a 3.8.x mod on 4.x?
Reply With Quote
2 благодарности(ей) от:
blind-eddie, Inna
  #76  
Old 11-28-2016, 07:29 AM
Inna Inna is offline
 
Join Date: Jul 2016
Posts: 65
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How? Easily!
Just installed it with no further actions
Reply With Quote
  #77  
Old 11-28-2016, 07:59 AM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You will need to port that product to vB 4.2.x if you intend to use it. vB 3.8.x and vB 4.2.x use different methods for rendering templates.
Reply With Quote
Благодарность от:
Inna
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:23 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08141 seconds
  • Memory Usage 2,299KB
  • Queries Executed 22 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (7)post_thanks_box
  • (3)post_thanks_box_bit
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (7)post_thanks_postbit_info
  • (6)postbit
  • (2)postbit_attachment
  • (7)postbit_onlinestatus
  • (7)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete