Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-05-2002, 05:25 PM
marc49 marc49 is offline
 
Join Date: Apr 2002
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default A major hack request!

I don't even know if it's possible for someone to do this, but I figured I would ask.

My board is an auto enthusiast board and since the very beginning I have wanted to have an "extended" profile setup like that of http://hondaprelude.com you can see an example of their setups at http://hondaprelude.com/setups

You would add/edit your setups in a members "profile" section.. so there would be a link in there calld "car information" or something like that..

Basically I am assuming this would require setting up another database and then linking a members userid to that new database with his/her car information but maybe not??

I don't know the technical aspects of doing this type of integration, but I imagine this would be huge project to make. Please let me know if anybody is interested in doing this hack.
Reply With Quote
  #2  
Old 08-05-2002, 08:45 PM
marc49 marc49 is offline
 
Join Date: Apr 2002
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am willing to pay for this to be done, if nobody else on here thinks they would want this type of hack done..
Reply With Quote
  #3  
Old 08-05-2002, 09:01 PM
Logician's Avatar
Logician Logician is offline
 
Join Date: Nov 2001
Location: inside vb code
Posts: 4,449
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does this help?
Reply With Quote
  #4  
Old 08-05-2002, 09:57 PM
[D]Vincent's Avatar
[D]Vincent [D]Vincent is offline
 
Join Date: Jun 2002
Location: In my own little world?
Posts: 411
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well you could get the information for the stuff easily. All you would need is the image upload hack thing or whatever that allows you to upload an image to your profile or something, then create a custom profile field for each thing. Then just make a seperate page that displays that information on it and give a link to that page in the member's profile or on the memberlist. Correct me if I'm wrong though,
Reply With Quote
  #5  
Old 08-06-2002, 03:07 AM
marc49 marc49 is offline
 
Join Date: Apr 2002
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That portfolio kinda is what I want, but not totally. having the ability for a user to upload pictures themselves would be a luxury, but not a neccessity. The main thing I am looking at is the expanded profile with a seperate link to view that profile. Maybe if I could get the guy who does the portfolio to customize it for me, but I will wait until he has all the bugs worked out. No sense in asking him to customize something he is still working on.

To [D]Vincent, the way you make it sound, it does sound easy to create. HOWEVER, I am just now getting comfortable at hacking my boards. Trying to create the code myself for this stuff, would take me forever. I don't even know where to start Hopefully someone will take this request and work on it.
Reply With Quote
  #6  
Old 08-13-2002, 05:02 PM
TeddyBare69 TeddyBare69 is offline
 
Join Date: Jun 2002
Location: CA, US
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[D]Vincent what you said is absolutely correct. You can do this thru the control panel. If you are only talking about a couple of different values you would like to store that would work great. You could even reuse the avatar upload functionality in vBulletin to make picture available as an added feature.

If you are talking about more information than a handful you will want a more custom approach. Something that will have a more user friendly interface to cator to your customers and the data you are storing.

Correct me if I am missing something here but I believe that the additional settings you can add are limited to text field controls currently. I have been just recently attempting to make use of that in my next hack I am working on. I didn't see a way of adding a pull down or a radial button or anything but a straight text control.


Quote:
Originally posted by [D]Vincent
Well you could get the information for the stuff easily. All you would need is the image upload hack thing or whatever that allows you to upload an image to your profile or something, then create a custom profile field for each thing. Then just make a seperate page that displays that information on it and give a link to that page in the member's profile or on the memberlist. Correct me if I'm wrong though,
Reply With Quote
  #7  
Old 10-27-2002, 02:48 AM
marc49 marc49 is offline
 
Join Date: Apr 2002
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I haven't gotten a hold of teddybare69 lately so I don't know if he is even working on his portfolio program anymore.


Is anyone interested in doing this hack for me? I wish I could get some screenshots of hondaprelude.com's setup, but the guy had to shut down the site
Reply With Quote
  #8  
Old 10-27-2002, 03:14 AM
Erwin's Avatar
Erwin Erwin is offline
 
Join Date: Jan 2002
Posts: 7,604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just add more custom profiles, and modify the getinfo templates so that the layout is different. Make all these custom profile fields hidden so they won't show up as a list in the normal getinfo custom profile list. Then just put the custom profile variables with the correct field numbers in the right place in getinfo. Make one of the custom profile a place where members can put in the URL to an image of their car, and in the appropriate place in the getinfo template, point the img src tag to that custom profile field variable. You can approximately get a similar result without hacking by just modifying the template.
Reply With Quote
  #9  
Old 10-29-2002, 12:32 AM
marc49 marc49 is offline
 
Join Date: Apr 2002
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Erwin
Just add more custom profiles, and modify the getinfo templates so that the layout is different. Make all these custom profile fields hidden so they won't show up as a list in the normal getinfo custom profile list. Then just put the custom profile variables with the correct field numbers in the right place in getinfo. Make one of the custom profile a place where members can put in the URL to an image of their car, and in the appropriate place in the getinfo template, point the img src tag to that custom profile field variable. You can approximately get a similar result without hacking by just modifying the template.

Adding fields and allowing users to upload pictures to those area's may be easy for you guys. BUT, I have no idea where to even start on the hacking of code or templates for that matter. If anybody is interested or intrigued let me know by either replying or sending me an email.

I hope somebody responds :glasses:
Reply With Quote
Reply


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

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

Forum Jump


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


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.04748 seconds
  • Memory Usage 2,240KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete