Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons

Reply
 
Thread Tools
SCANU's Xenforo Login Slide Panel Details »»
SCANU's Xenforo Login Slide Panel
Version: 1.1.2, by Scanu Scanu is offline
Developer Last Online: Apr 2022 Show Printable Version Email this Page

Category: Major Additions - Version: 4.x.x Rating:
Released: 06-20-2012 Last Update: 09-14-2012 Installs: 104
Uses Plugins Auto-Templates
Code Changes Translations  
No support by the author.

Description

This modification shows an elegant login panel that looks like the Xenforo's one. Look at the screenshots for more!
Demo

Live Demo

Video Demo: Coming Soon..

Installation

Upload the product via admincp and go in Settings->Xenforo Login Panel for customize the mod.
To have the feature for login with username or email adress like Xenforo see this post by HMBeaty: thank him for this awesome feature.
For the update just redownload and reupload the file, make sure that overwriting is set to Yes.

Translations
Russian Translation v1.0.2
Greek Translation v1.1.2
Please post your translation in a reply so everyone can use it.

Restrictions/ Reported issues
This modification should not work if you have edited header and headinclude templates, in the next version I will add a better compatibility.

PLEASE VOTE THIS MOD FOR MOTM CLICK HERE, AND CLICK MARK AS INSTALLED

To get support:
  1. Mark this mod as Installed
  2. Copy/Pasted errors or screenshots
  3. URL/link to site

Follow me on twitter for updates

Many thanks to Boofo for his basing php code and to my brother Clear for the styling.

If you like italian G-funk/rap please try out this music or this music

Download Now

File Type: xml Xenforo Login Panel by SCANU 1.0.2.xml (20.0 KB, 79 views)
File Type: xml Xenforo Login Panel by SCANU 1.1.2.xml (21.0 KB, 504 views)

Screenshots

File Type: jpg Collapsed.jpg (54.9 KB, 0 views)
File Type: jpg Register.jpg (14.4 KB, 0 views)
File Type: jpg Opened.jpg (14.8 KB, 0 views)
File Type: jpg pca.jpg (59.3 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
6 благодарности(ей) от:
CoZmicShReddeR, Hakan39, mapleleaffans, nacaruncr, NTT, romaszek

Comments
  #112  
Old 09-16-2012, 12:57 PM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That is very strange i wonder if you did a mistake and you install 1.1? Please try to redownload and reinstall the lastest version (1.1.2) and remember to set overwrite to yes. I need to be sure that utf-8 is the problem, thank you.
Reply With Quote
  #113  
Old 09-16-2012, 01:01 PM
zascok zascok is offline
 
Join Date: Jul 2010
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just did, the same problem. Try it yourself I will keep it in the for another hour

http://askalon.ws/forum.php
Reply With Quote
  #114  
Old 09-16-2012, 01:30 PM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi zascok thank you very much for let me see your site with the problem on, unfortunately no one do it and it's harder for me to see the problem. You seem to have to old javascript, there are two possibilities
1 Did you edit this template? (is it red in the template list?). If so maybe it won't update the js with the new's one and it continues to use your code..
2 Check Product version on your admincp
Reply With Quote
  #115  
Old 09-16-2012, 01:42 PM
zascok zascok is offline
 
Join Date: Jul 2010
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No I didn't not edit the template

and the product version in CP is

Code:
Xenforo Login Panel by SCANU 	1.1.2 	This product make your login form as the xenforo's one: a slide panel
Could you please publish the new js and tell me where exactly to replace it? So we will take it from there. Let's see if that is the trouble.

Here is what I have in login_panel_javascript
Code:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script>
<script>
$(document).ready(function() {
    // Expand Panel
    $("#_open").click(function(){
        $("div#_panel").slideDown("{vb:raw vboptions.slide_velocity}");
<vb:if condition="$vbulletin->options['bounce_on_off']">
        $("#_panel").animate({"height": "+={vb:raw vboptions.bounce_px}px"}, "{vb:raw vboptions.bounce_velocity}");
        $("#_panel").animate({"height": "-={vb:raw vboptions.bounce_px}px"}, "{vb:raw vboptions.bounce_velocity}");
</vb:if>
        $(".everything").animate({opacity: 0.{vb:raw vboptions.blur_opacity}}, "{vb:raw vboptions.slide_velocity}");
        $(".everything").addClass( "blur" );
    });    
    
    // Collapse Panel
    $("#_close").click(function(){

        $("div#_panel").slideUp("{vb:raw vboptions.slide_velocity}");
        $(".everything").removeClass( "blur" );
        $(".everything").animate({opacity: 1}, "{vb:raw vboptions.slide_velocity}"); 
  });
     
        // Switch buttons from "Log in or Sign up" to "Close Panel" on click
    $("._toggle a").click(function () {
        $("._toggle a").toggle();
    });

    
     // Hide log in options
        $("._hide").change(function(){
            $("#_scanu_password,._lostPassword").slideUp("fast");
            $("._stay_logged").fadeOut("fast");
            $("#_panel").animate({"height": "-=52px"}, "fast");
            $("#_register_button").show();
            $("#_login_button").hide();
            document.reg_log.action = "register.php";
            $("#1").attr("name", "");
            $("#2").attr("name", "");
            $("#3").attr("name", "");
            $("#4").attr("name", "");
    });
    
      // Show log in options
    $("._show").change(function(){
        $("#_scanu_password,._lostPassword").slideDown("fast");
        $("._stay_logged").fadeIn("fast");
        $("#_panel").animate({"height": "+=52px"}, "fast");
        $("#_register_button").hide();
        $("#_login_button").show();
        document.reg_log.action = "login.php?{vb:raw session.sessionurl}do=login";
        $("#s1").attr("name", "s");
        $("#s2").attr("name", "do");
        $("#s3").attr("name", "vb_login_md5password");
        $("#s4").attr("name", "vb_login_md5password_utf");
  });       
});
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
	$(window).load(function(){
		$('input:-webkit-autofill').each(function(){
			var text = $(this).val();
			var name = $(this).attr('name');
			$(this).after(this.outerHTML).remove();
			$('input[name=' + name + ']').val(text);
		});
	});
}
</script>


WOW You Are Right. Just Replaced the script from the xml of 1.1.2 copy -paste into templates mention above , And it works!



!Thank you!
Reply With Quote
  #116  
Old 09-16-2012, 02:08 PM
zascok zascok is offline
 
Join Date: Jul 2010
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tested IE9 x64, FF, Opera, Opera-mini and Android Thanks Scanu (bought you a coffee) If you ever need an ideas about a new hack-to -make let me know I have couple of ideas

Besides I didn't hat to translate anything for the front-end, the phases all the same so my translation for 1.0.2. can be used for 1.1.2 as well.
Reply With Quote
  #117  
Old 09-16-2012, 02:21 PM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh i'm glad that you make it working, thank you for your donation, it's really appreciated i'll consider this for my next paid mod , ideas are welcomed but remember that i have a lot of queued mods so i need time.
Reply With Quote
  #118  
Old 10-09-2012, 02:54 PM
scottct1 scottct1 is offline
 
Join Date: Mar 2002
Location: Connecticut
Posts: 391
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I went to your site to check this demo out and it gave me some poem instead about death.

I hope the author is ok and its just his forum that died.
Reply With Quote
  #119  
Old 10-09-2012, 05:29 PM
Scanu's Avatar
Scanu Scanu is offline
 
Join Date: Nov 2010
Posts: 829
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lol Sorry demo isn't available anymore
Reply With Quote
  #120  
Old 12-30-2012, 08:43 AM
GamerPerfection's Avatar
GamerPerfection GamerPerfection is offline
 
Join Date: Feb 2006
Posts: 389
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This works and is awesome. I've got it on my site here: www.gamerperfection.com
Reply With Quote
  #121  
Old 01-02-2013, 02:16 AM
smirkley smirkley is offline
 
Join Date: Apr 2008
Posts: 627
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Think I am going to love this mod,... if I can get it to work that is.

Only having two problems,..

1 - log in with email addy doesnt work
2 - login button on a cms page is missplaced and shows up after the Stay Logged In phrase.

Using vB4.2.0 PL3 Suite

Thanks again, and looking forward to making this a permenent addition.
Reply With Quote
Reply

Thread Tools

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:17 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.13664 seconds
  • Memory Usage 2,348KB
  • 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
  • (2)bbcode_code
  • (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
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (6)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