Cole Geissinger
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Modal Login] Stuck on "Checking Credentials…" after 3.6Awesome, glad to hear @stringbean98!
I’ll take note of that as I believe others may find use in that 🙂
Forum: Plugins
In reply to: [WP Modal Login] Nextend Social connect?Are you looking to add login with social media accounts? This plugin doesn’t support this and won’t have this built in. I may possibly look into adding integrations with other plugins that support this, but it is beyond scope at this moment.
Forum: Plugins
In reply to: [WP Modal Login] Stuck on "Checking Credentials…" after 3.6Ok right after I finish that message, this is an issue with s2member. When the PHP is ran for the AJAX login, the PHP fails because of the issues I mentioned above. Your issue is with s2member not properly checking and correcting all notices/errors.
screenshot of the ajax returned data which is empty due to the errors http://cl.ly/image/0s2N0C1n0h16
Forum: Plugins
In reply to: [WP Modal Login] Stuck on "Checking Credentials…" after 3.6glad to hear @therandomguy12345!
@stringbean98, I have just installed s2member and I get the same results. It appears s2member is conflicting with the plugin. I also found a number of undefined variables and some headers already sent messages the second I installed the plugin.
I’ll continue to dig into this, but I may suggest checking with the author of s2member.
Forum: Plugins
In reply to: [WP Modal Login] Stuck on "Checking Credentials…" after 3.6@therandomguy12345 SOrry to hear you’re having issues. I have this plugin installed in multiple virtualboxes and all instances are working for me.
If downloading a previous hits the same issue, there is a 3rd party issue at play here. I’m sure you did these steps already but I’ll just reiterate here as this should get help answer some things:
- Have you disabled all plugins and the issue continues?
- Have your (temporally) switched your theme to a default?
- If you have made any customizations to the plugin code, and then updated, your code will be lost and replaced with the newest version of the plugin.
I can definitely say it’s not an issue with the plugin and 3.6. Since I started working on this plugin I’ve been building it on WordPress’ trunk which was all 3.6. And even right now it’s working for 3.7 alpha. I also have back versions installed and still able to get logins working.
I haven’t touched any of the login stuff for a little while so I’m having a hard time seeing how this is ’caused by this plugin. Although, I’m not completely ruling it out.
Forum: Plugins
In reply to: [WP Modal Login] Forgot Password Hangs on Checking CredentialsThis has been resolved in version 2.0.6
Forum: Plugins
In reply to: [WP Modal Login] Lost password bugThis has all been resolved in version 2.0.6
Forum: Plugins
In reply to: [WP Modal Login] (Another) Hangs on "Checking Credentials"I’m sorry about that. At this moment I have been unable to duplicate. It seems there may be a configuration issue on your site? Do you have a link available for me to look closer at the issue?
Forum: Plugins
In reply to: [WP Modal Login] (Another) Hangs on "Checking Credentials"I have been hearing others using w3total cache with similar issues? You wouldn’t happen to have that installed do you?
Forum: Plugins
In reply to: [WP Modal Login] Direct a link to the modal loginAt this moment there’s no functionality to invoke the modal window through a URL but something I should probably add to the list as I see this being something everyone could enjoy.
If you’re code savvy you could create some JavaScript to invoke the login modal by listening for a particular URL hash like domain.com/#login
You should be able to do that without modifying any of the plugins code?
Forum: Plugins
In reply to: [WP Modal Login] Forgot Password Hangs on Checking CredentialsThis is a known bug and duplicate of this existing ticket. A fix is under way.
Forum: Plugins
In reply to: [WP Modal Login] edited theme no workIt sounds like this is an issue with that particular theme. Please address the issue with that theme developer to make sure their theme is built to work with this plugin.
Forum: Plugins
In reply to: [WP Modal Login] Register Link not appearing in widgetMake sure you have registration enabled in your network admin
Forum: Plugins
In reply to: [WP Modal Login] Hyperlink "Lost your password" text?While I don’t recommend changing the core code as you run the risk of loosing the changes in future updates, but you can do what you want with it 🙂
Navigate to and open wp-modal-login/includes/class-wp-modal-login.php
On line 507 you’ll find this code
echo '<a href="#forgotten" class="wpml-nav">' . __( 'Lost your password?', 'geissinger-wpml' ) . '</a>';just change what’s inside of the href attribute and it should just work? The tabbing functionality is hooked onto that value so changing that will cause your users to be redirected the new page you link to in there.
Forum: Plugins
In reply to: [WP Modal Login] Popping up on everypage reload and not closing after loginHi Peter, the modal window is displaying because you have inserted some custom CSS that is ‘causing the window to display automatically.
In the sourcecode of your site you have declared these styles:
/* Popup Login Link */ #geissinger_wp_modal_login_widget-2 a { font-size: 32px; } /* Popup Login Changes */ #login-box { display: block; margin-left: -190.5px; margin-top: -280.5px; height: auto; position: absolute; }the line that says ‘display: block;’ is the issue. By default the HTML needs to be set to display:none, and then we use a JavaScript event to fadeIn the login. Removing this will stop the window from auto loading