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

Reply
 
Thread Tools
Member Profile Intro Details »»
Member Profile Intro
Version: 1.0.4, by phpdesk phpdesk is offline
Developer Last Online: Apr 2020 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 4.0.x Rating:
Released: 09-29-2010 Last Update: 11-23-2011 Installs: 287
DB Changes Uses Plugins Template Edits Auto-Templates
 
No support by the author.

Info
Add an extra content block to the member profile page that could serve for anything from a simple welcome message to a business card presentation.
Features
- Enable per usergroup
- Support BBcode parsing
- Additional profile fields are created automatically
Installation
Import [phpdesk.com]-product-profileintro.xml via AdminCP > Plugin System > Manage Products > [Add/Import Product]
Settings
Go to: AdminCP > vBulletin Options > Profile Intro Options
Users Go to: UserCP Settings > Edit Profile > Additional Information > Profile Intro
Mod Support
- Do not forget to mark as installed to qualify for further assistance
- A small donation would always be welcome to support further development of this hack (Support Developer)
- I'll do my best to listen to your comments and suggestions as long as time permits
Ghangelog
1.0.4 | 2011-11-24
- Small fix to address the Profile Field phrase issue (thanks for the heads up, Hippy!)
1.0.3 | 2011-11-16
- As requested, Profile Intro Title is not a required field now, you may only enter an Intro Text for the Member Intro block to show.
- Fixed version check url in AdminCP
1.0.2 | 2011-11-15
- Fix for the profile-info.css to load properly when stylesheets are set to be stored as files.
- Intro Block now displays to unregistered users, too. It was previously invisible to guests
by mistake.
1.0.1 | 2010-11-20
- Quick fix to support vBulletin 4.0.8+
1.0.0 | 2010-09-29
- First Release
Enjoy

Download Now

File Type: xml [phpdesk.com]-product-profileintro-1.0.4.xml (11.1 KB, 665 views)

Screenshots

File Type: png admin-options.png (13.2 KB, 0 views)
File Type: png intro.png (37.4 KB, 0 views)
File Type: png profile-edit.png (12.0 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
BlueCheri, Hakan, Toorak Times

Comments
  #112  
Old 11-23-2011, 09:03 PM
phpdesk phpdesk is offline
 
Join Date: Jan 2005
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hippy View Post
thanks for the quick reply phpdesk and for your time spent on this mod you share...
it's much appreciated
Thanks for the kind words, I'm doing my best with this particular mod as I use it myself and want to make it a solid piece of code. Unfortunately, just when you think you have time to spare on it, something comes up and takes you away, as always. I'll keep you guys posted, it may take a while though.
Reply With Quote
Благодарность от:
Hippy
  #113  
Old 11-23-2011, 11:08 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi phpdesk
I know this may not be a fix for everyone but it worked for me..
I did as you suggested here
Quote:
Originally Posted by phpdesk View Post
What you can do to fix the problem in your case is click on every profile field in the admincp and update there, once saved it will display properly both in the backend and in the front end.

Hope this helps.
and it didn't work..
so I edited the field*_desc part in the xml file..
to this..

Code:
$template_hook[custom_css_list] .= ',profile-intro.css';
}]]></phpcode>
		</plugin>
	</plugins>
	<phrases>
		<phrasetype name="Custom Profile Fields" fieldname="cprofilefield">
			<phrase name="field13_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Enter a short heading for the Profile Intro block]]></phrase>
			<phrase name="field13_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Title]]></phrase>
			<phrase name="field14_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[The content of the profile intro block. You may use BBcodes <br />if your usergroup is granted permission to do so.]]></phrase>
			<phrase name="field14_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Text]]></phrase>
			<phrase name="field15_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Enter a short heading for the Profile Intro block]]></phrase>
			<phrase name="field15_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Title]]></phrase>
			<phrase name="field16_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[The content of the profile intro block. You may use BBcodes <br />if your usergroup is granted permission to do so.]]></phrase>
			<phrase name="field16_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Text]]></phrase>
Just noticed in the other version it was caching youtube.css
Code:
if(THIS_SCRIPT=='css')
{
	$cache[] = 'youtube.css';
instead of
Code:
if(THIS_SCRIPT=='css')
{
	$cache[] = 'profile-intro.css';


thanks again
If you see a issue of what I did let me know..
regards
Hippy
Reply With Quote
  #114  
Old 11-23-2011, 11:17 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I guess thats why it wouldn't display if you had save css as a file..
https://vborg.vbsupport.ru/showpost....0&postcount=22
Reply With Quote
Благодарность от:
phpdesk
  #115  
Old 11-24-2011, 06:42 AM
phpdesk phpdesk is offline
 
Join Date: Jan 2005
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hippy View Post
I guess thats why it wouldn't display if you had save css as a file..
https://vborg.vbsupport.ru/showpost....0&postcount=22
I have actually addressed the CSS issue in version 1.0.3 of the mod, and it's no longer a problem if you choose to save the stylesheets as files. Nonetheless, you're a hero, you know that? Your other quote pointed me to the right direction as far as the profile field phrases are concerned, and this is what you need to REMOVE from the .xml file before reimporting it:
Code:
		<phrasetype name="Custom Profile Fields" fieldname="cprofilefield">
			<phrase name="field5_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Enter a short heading for the Profile Intro block]]></phrase>
			<phrase name="field5_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Title]]></phrase>
			<phrase name="field6_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[The content of the profile intro block. You may use BBcodes <br />if your usergroup is granted permission to do so.]]></phrase>
			<phrase name="field6_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Text]]></phrase>
			<phrase name="field7_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Enter a short heading for the Profile Intro block]]></phrase>
			<phrase name="field7_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Title]]></phrase>
			<phrase name="field8_desc" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[The content of the profile intro block. You may use BBcodes <br />if your usergroup is granted permission to do so.]]></phrase>
			<phrase name="field8_title" date="1285782758" username="phpdesk" version="1.0.0"><![CDATA[Profile Intro Text]]></phrase>
		</phrasetype>
Thanks, mate!
Reply With Quote
Благодарность от:
BCP Hung
  #116  
Old 11-24-2011, 03:21 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

so remove it all and the issue is fixed ?
I am glad to help and looking forward to the next release pal..
have a great thanksgiving.. to you and your family
Reply With Quote
  #117  
Old 11-24-2011, 03:43 PM
phpdesk phpdesk is offline
 
Join Date: Jan 2005
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hippy View Post
so remove it all and the issue is fixed ?
I am glad to help and looking forward to the next release pal..
have a great thanksgiving.. to you and your family
Thanks, you too!
No, no need to remove anything, just reimport the xml product file and make sure "Allow Overwrite" is checked. This should fix the issue.
Reply With Quote
  #118  
Old 11-25-2011, 03:07 AM
Winter Sonata Winter Sonata is offline
 
Join Date: Apr 2010
Posts: 232
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello phpdesk, thanks alot for sharing this mod.

I have 402 version and the Intro Block doesn't show up as it should be it shows no frame as this img indicates :
https://vborg.vbsupport.ru/showpost....71&postcount=8

I hope you can helo me sort this out.
Reply With Quote
  #119  
Old 11-25-2011, 03:08 AM
Winter Sonata Winter Sonata is offline
 
Join Date: Apr 2010
Posts: 232
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have the latest version of your mod as well.
Reply With Quote
  #120  
Old 11-25-2011, 07:50 AM
phpdesk phpdesk is offline
 
Join Date: Jan 2005
Posts: 149
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Winter Sonata View Post
I have the latest version of your mod as well.
I'll try to install a test version of vB 4.0.2 and see what could possibly be going on there, although my schedule is quite tight at the moment (working on another mod).

Anyway, by the look of the screenshot, you're having the CSS-not-loading issue. Are you having your forum set up to store CSS as files? I have addressed this particular issue recently, and tested it working with the latest version of vBulletin. Is there a particular reason why you aren't upgrading yours?
Reply With Quote
  #121  
Old 11-26-2011, 02:21 AM
Mr_Running Mr_Running is offline
 
Join Date: May 2010
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey phpdesk love the mod. When you get a chance please add post #102
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 12:40 AM.


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.07607 seconds
  • Memory Usage 2,364KB
  • Queries Executed 26 (?)
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
  • (4)bbcode_code
  • (5)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
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (6)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (4)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)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
  • 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
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete