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

Reply
 
Thread Tools
Short and Simple Registration system - Collapsible addition information Details »»
Short and Simple Registration system - Collapsible addition information
Version: 1.00, by Scanu Scanu is offline
Developer Last Online: Apr 2022 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.x.x Rating:
Released: 09-02-2011 Last Update: 09-03-2011 Installs: 8
Template Edits
Code Changes Translations  
No support by the author.

Hi guys this is a mod of this modification that add some features and solving bug whit additional information required like birthday gender ecc. This modifications allow your user to choose between a fast registration or a accurate registration, the fast registration is simpler and don't include additional information, by the default fast registration you can access at the accurate registration let me explain with screenshots

NORMAL VB REGISTRATION

http://buypoe.com/images/11.png

FAST REGISTRATION

http://img694.imageshack.us/img694/1495/immaginemtd.png

ACCURATE REGISTRATION

http://img824.imageshack.us/img824/6932/immagine2sq.png


HOW TO
Go in admincp/Style manager/your skin/edit templates/Registration template/ register
Replace all the code with the code in the attached text file

If you have bug with required field please go here to see how to fix

If you want to change or translate the phrase of the button go here


I'm italian so i hope my english is not wrong if you don't understand please feel free to tell me and i will explain you better




Version history
-1.0 first release on Vbulletin.org

Download Now

File Type: txt Fast and simple registration system.txt (13.1 KB, 127 views)

Show Your Support

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

Comments
  #2  
Old 09-03-2011, 05:32 PM
Manoel J?nior Manoel J?nior is offline
 
Join Date: Feb 2009
Location: SP / Brasil
Posts: 778
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please, make plugin!

Thanks

vBulletin 3.8.7
Reply With Quote
Благодарность от:
JohorBahru
  #3  
Old 09-03-2011, 06:02 PM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wiil do it but for now i can just post the templates
Reply With Quote
Благодарность от:
JohorBahru
  #4  
Old 09-04-2011, 07:05 AM
kfyonur kfyonur is offline
 
Join Date: Apr 2008
Posts: 177
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="https://vborg.vbsupport.ru/showthread.php?t=254438" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=254438</a>

it is same and easy.
Reply With Quote
  #5  
Old 09-04-2011, 08:49 AM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HOW TO CHANGE/TRANSLATE PHRASE
In the template search
Code:
Additional informations for accurate registration
and replace with your phrase
Reply With Quote
  #6  
Old 09-04-2011, 08:49 AM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HOW TO FIX ADDITIONAL INFORMATION REQUIRED BUG
If you have selected custom field as required you have to:

Find this:
Code:
<vb:if condition="$show['customfields_profile']">
			<h3 class="blocksubhead">{vb:rawphrase additional_required_information_profile}</h3>
			<div class="section">
				{vb:raw customfields_profile}
				<vb:if condition="$show['birthday']">{vb:raw birthdayfields}</vb:if>
			</div>
		</vb:if>
and replace with
Code:
		<vb:if condition="$show['birthday']">	<h3 class="blocksubhead">{vb:rawphrase additional_required_information_profile}</h3>
			<div class="section">
				{vb:raw birthdayfields}
			</div>
		</vb:if>
Then find
Code:
<p class="description">{vb:rawphrase enter_valid_email_address}</p>
Under this add
Code:
<vb:if condition="$show['customfields_profile']">
			
				{vb:raw customfields_profile}
</vb:if>
If you have the birthday as require
Find this:
Code:
<vb:if condition="$show['customfields_profile']">
			<h3 class="blocksubhead">{vb:rawphrase additional_required_information_profile}</h3>
			<div class="section">
				{vb:raw customfields_profile}
				<vb:if condition="$show['birthday']">{vb:raw birthdayfields}</vb:if>
			</div>
		</vb:if>
and replace with
Code:
<vb:if condition="$show['customfields_profile']">
			
				{vb:raw customfields_profile}
</vb:if>
Then find
Code:
<p class="description">{vb:rawphrase enter_valid_email_address}</p>
Under this add
Code:
<vb:if condition="$show['birthday']">	
			
				{vb:raw birthdayfields}
		</vb:if>
If you have another filed required tell me what it is and i tell you how to fix
I'm italian so i hope my english is not wrong if you don't understand please feel free to tell me and i will explain you better
Reply With Quote
  #7  
Old 09-04-2011, 09:00 AM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Simplified so it doesn't seem hard
Reply With Quote
  #8  
Old 09-04-2011, 09:19 AM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kfyonur View Post
it isn't the same because you can't expand the registration to fill the additional field and there are many bugs with require field
Reply With Quote
  #9  
Old 09-07-2011, 06:40 AM
fizzow fizzow is offline
 
Join Date: Oct 2009
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I test this on my test forum but when I click on 'Additional informations for accurate registration' button, seems it doesn't do anything. Why?
Reply With Quote
  #10  
Old 09-07-2011, 10:29 AM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can you link the forum please i will see what's the problem
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 10:39 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.04377 seconds
  • Memory Usage 2,333KB
  • 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
  • (9)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
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (2)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (1)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)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_postinfo_query
  • fetch_postinfo
  • 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