Page 1 of 1

How to disable login customizer

PostPosted: November 24th, 2011, 3:19 am
by davidcom
I've just started testing out this plugin. So far it looks promising. However, I'm having a couple issues with it breaking my website. In this post, I'd like to ask if there's any way of disabling s2member's login customization option.

I'm currently using a paid plugin (Pathway - Custom Wordpress Login Page) that has much more functionality and options than s2m's login customization options.

Here is an example of a login page on a test site of mine: http://www.pointcomprod.com/eae/wp-login.php

When I activate s2m, it completely breaks my current login customization.

I appreciate that s2m has a lot of extra features built in (like login customization and login redirect), but it seems there should be a way to disable these items in the event the user wishes to use a more robust dedicated plugin.

Thank you in advance for any help you can give.

Re: How to disable login customizer

PostPosted: November 24th, 2011, 7:59 am
by Eduan
It may be caused by a compatibility issue, try de-activating, if possible uninstalling the other plugin and see if it works now.

With s2Member you can customize the login/registration page by going to WP Admin -> s2Member -> General Options -> Login/Registration Design.

Hope this helps. :)

Re: How to disable login customizer

PostPosted: November 24th, 2011, 8:57 am
by davidcom
Thanks for the reply. I actually can already confirm that it's caused by a compatibility issue. What I want is to disable s2m's login customizer so I can use the much more robust "Pathway" plugin.

Re: How to disable login customizer

PostPosted: November 24th, 2011, 9:04 am
by Eduan
I don't think that is possible normally, you will have to go through the code.
I don't know how but I'm sure Jason, Cristián or Ace could help.
Sorry. :(

Re: How to disable login customizer

PostPosted: December 26th, 2011, 7:05 am
by blogjunkie
I'd also like to know if it's possible to disable S2M's login customization. Any updates on this? Thanks!

Re: How to disable login customizer

PostPosted: December 26th, 2011, 8:42 am
by Eduan
Hi blogjunkie!
Could you please specify or clarify what you mean? A photo would really help, you can use PicPick in order to take it.

Re: How to disable login customizer

PostPosted: December 26th, 2011, 8:55 am
by blogjunkie
Hi Eduan, nothing to show you at the moment. Like davidcom who started this post, I want to use another plugin to customize the registration process (Theme My Login - http://wordpress.org/extend/plugins/theme-my-login/).

However 3rd party plugins that control the login process get overridden by s2Member's login customization. I would like to disable this feature, and handle login and registrations completely with Theme My Login. Is that possible? Thanks

Re: How to disable login customizer

PostPosted: December 26th, 2011, 1:46 pm
by davidcom
Yes, I'd still like a way to do this. I want to control the looks of my login page through the use of a different login theme tool.

Re: How to disable login customizer

PostPosted: December 30th, 2011, 4:56 pm
by Jason Caldwell
Thanks for the heads up on this thread.

Yes, if you'd like to disable this aspect of s2Member, please create this directory and file.

/wp-content/mu-plugins/s2-hacks.php
( these are MUST USE plugins, see: http://codex.wordpress.org/Must_Use_Plugins )
Code: Select all
<?php
add_action
("ws_plugin__s2member_after_loaded", "s2_hacks"); 
function s2_hacks
()
    {
        remove_action("login_head", "c_ws_plugin__s2member_login_customizations::login_header_styles");
        remove_filter("login_headerurl", "c_ws_plugin__s2member_login_customizations::login_header_url");
        remove_filter("login_headertitle", "c_ws_plugin__s2member_login_customizations::login_header_title");
        remove_action("login_footer", "c_ws_plugin__s2member_login_customizations::login_footer_design");
    }
?>
s2-hacks.zip
(334 Bytes) Downloaded 101 times

Re: How to disable login customizer

PostPosted: December 30th, 2011, 8:47 pm
by blogjunkie
Thanks Jason, will give that a try!