Jump to content


* * * * * 1 votes

(IM) Sliding Quick Login v1.3.2


  • Please log in to reply
113 replies to this topic

#101 Martin

Martin

    But but, it's not only only!

  • Management
  • PipPipPipPipPipPipPipPipPipPip
  • 7,081 posts
  • Location:Hammerfest, Norway
  • Real Name:Martin Aronsen
  • IPB Version:v3.2.x
Contributor

Posted 22 September 2010 - 06:20 PM

Send me the URL to where I can see this issue, and enable the other methods.

#102 dkmvkl11

dkmvkl11

    Novice

  • Members
  • PipPip
  • 9 posts
  • IPB Version:v2.3.x

Posted 28 October 2010 - 02:11 PM

Hello Martin!

This mod got some problem with IP.Board 3.1.3 it just comes up saying "[#10193] We encountered a problem processing your login request. Please try again." but if you login though the normal login it works fine and I've been manual fix this error but it still happen  :wacko:

Please help  ;)

#103 dkmvkl11

dkmvkl11

    Novice

  • Members
  • PipPip
  • 9 posts
  • IPB Version:v2.3.x

Posted 28 October 2010 - 02:29 PM

Oh I found the way to fix this bug

To fix the error yourself edit the template "Global Templates -> quickLoginSlide" and find:

<input type="hidden" name="referer" value="{parse url="{$this->settings['query_string_safe']}" base="public"}" />

Add BELOW:

<input type='hidden' name='auth_key' value='{$this->member->form_hash}' />

Save the template and you're done.

#104 Martin

Martin

    But but, it's not only only!

  • Management
  • PipPipPipPipPipPipPipPipPipPip
  • 7,081 posts
  • Location:Hammerfest, Norway
  • Real Name:Martin Aronsen
  • IPB Version:v3.2.x
Contributor

Posted 28 October 2010 - 06:01 PM

View Postdkmvkl11, on 28 October 2010 - 02:11 PM, said:

Hello Martin!

This mod got some problem with IP.Board 3.1.3 it just comes up saying "[#10193] We encountered a problem processing your login request. Please try again." but if you login though the normal login it works fine and I've been manual fix this error but it still happen  :wacko:

Please help  ;)
Fixed :)

#105 matore

matore

    Programmer

  • Members
  • PipPipPipPipPipPip
  • 260 posts
  • Real Name:Real Name
  • IPB Version:v3.1.x

Posted 08 March 2011 - 03:28 PM

hello, is there a way to change speed of going down or up ?

#106 DJ Lovers

DJ Lovers

    n00b

  • Members
  • Pip
  • 2 posts
  • IPB Version:v3.1.x

Posted 01 May 2011 - 02:52 PM

I just installed this app on my 3.1.4 forum so now when i click log in it dosnt do a thing :S whats wrong??

#107 Martin

Martin

    But but, it's not only only!

  • Management
  • PipPipPipPipPipPipPipPipPipPip
  • 7,081 posts
  • Location:Hammerfest, Norway
  • Real Name:Martin Aronsen
  • IPB Version:v3.2.x
Contributor

Posted 07 May 2011 - 11:07 AM

View PostDJ Lovers, on 01 May 2011 - 02:52 PM, said:

I just installed this app on my 3.1.4 forum so now when i click log in it dosnt do a thing :S whats wrong??
I had a look on your site, and I do not see any trace of this hook in the HTML source. One of the reasons may be that the hook itself is disabled, or the skin author have removed hook points in the skin for this to function. Install/activate the default skin, and see if it works there.

#108 matore

matore

    Programmer

  • Members
  • PipPipPipPipPipPip
  • 260 posts
  • Real Name:Real Name
  • IPB Version:v3.1.x

Posted 29 June 2011 - 02:38 PM

im using this hook long time and it works perfect, But i just add this code to my GlobalTemplate:

<style type="text/css">
#w2b-StoTop {-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;width:100px;background-color: #EEEEEE;background-color: rgba(238, 238, 238, 0.6);filter: <--<--progid:DXImageTransform.Microsoft.gradient(startColorStr='#99EEEEEE',EndColorStr='#99EEEEEE');text-align:center;padding:5px;position:fixed;bottom:50px;right:25px;cursor:pointer;color:#444;text-decoration:none;border:1px solid #C9C9C9;}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type='text/javascript'>
	$(function() {
		$.fn.scrollToTop = function() {
			$(this).hide().removeAttr("href");
			if ($(window).scrollTop() != "0") {
				$(this).fadeIn("slow")
			}
			var scrollDiv = $(this);
			$(window).scroll(function() {
				if ($(window).scrollTop() == "0") {
					$(scrollDiv).fadeOut("slow")
				} else {
					$(scrollDiv).fadeIn("slow")
				}
			});
			$(this).click(function() {
				$("html, body").animate({
					scrollTop: 0
				}, "slow")
			})
		}
	});
	$(function() {
		$("#w2b-StoTop").scrollToTop();
	});
</script>
<a href='#' id='w2b-StoTop' style='display:none;'>Vrh strane</a> 

and after this quick slide login stop working for some reason. After i delete my script its working ok again. Probably there is some conflict or something but i cant figure it out.

also after adding my code i found this : Posted Image all my admin icons are like this, and they are "hidden" by default, just if you rollover your mouse they appear. strange ?

my code is def. problem and make all this happen but im not sure where is the problem.

any idea ?

#109 matore

matore

    Programmer

  • Members
  • PipPipPipPipPipPip
  • 260 posts
  • Real Name:Real Name
  • IPB Version:v3.1.x

Posted 15 July 2011 - 09:45 PM

still nothing :(

#110 Martin

Martin

    But but, it's not only only!

  • Management
  • PipPipPipPipPipPipPipPipPipPip
  • 7,081 posts
  • Location:Hammerfest, Norway
  • Real Name:Martin Aronsen
  • IPB Version:v3.2.x
Contributor

Posted 16 July 2011 - 12:37 AM

The problem is that you're mixing two Javascript libraries. IP.Board use PrototypeJS, and you just added jQuery to the mix, and both utilize the global variable "$". Do some searching around for "jQuery.noConflict()".

#111 matore

matore

    Programmer

  • Members
  • PipPipPipPipPipPip
  • 260 posts
  • Real Name:Real Name
  • IPB Version:v3.1.x

Posted 16 July 2011 - 11:53 AM

tnx martin, after only a few secs of researching i see the light at the end :)

#112 Nemesis2147

Nemesis2147

    n00b

  • Members
  • Pip
  • 2 posts
  • Location:Tagbilaran City
  • Real Name:Arthur
  • IPB Version:N/A

Posted 25 April 2012 - 05:48 AM

Hello, sorry for BUMPING ths OLD thread, may i asked? does this WORK now with IP.Board 3.2.3?
I have tested it, after i click 'SIGN IN' it appears the Sliding but, however it also appears the IP.Board Sign IN.

So weird? how can i fix that?

Thank you!

#113 Martin

Martin

    But but, it's not only only!

  • Management
  • PipPipPipPipPipPipPipPipPipPip
  • 7,081 posts
  • Location:Hammerfest, Norway
  • Real Name:Martin Aronsen
  • IPB Version:v3.2.x
Contributor

Posted 26 April 2012 - 12:33 PM

No, this does not work with 3.2 or 3.3. It was discontinued as IPS added their own quick login feature to the product.

#114 Nemesis2147

Nemesis2147

    n00b

  • Members
  • Pip
  • 2 posts
  • Location:Tagbilaran City
  • Real Name:Arthur
  • IPB Version:N/A

Posted 28 April 2012 - 11:38 AM

Thanks for the quick respond sir, but may i asked? i wanted to use this MOD, instead of using the DEFAULT IPS, Quick Login.
If you mind?

I'm big huge fan of sliding jQuery :3 hopefully you could give me the chance to use this modification, and replace my default IPS Quick Login.
Thank you Martin!




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users