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!