• Resolved karan81

    (@karan81)


    1. Is there a way to make the “lost Password ” form open in the ajax box?
    2. Also the box should close when mouse left click on outside. We need to press Esc key to get close the box.
    3. It would be great if all links are provided in the same window like – login | Register | Lost password. Just a suggestion for next update.

    By the way great plugin, Thanks.

    Thanks
    Karan

    http://ww.wp.xz.cn/extend/plugins/zm-ajax-login-register/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I recently ran into the same issue as your #2.

    I fixed it by opening register.js in the assets folder and changed

    $('.ajax-login-register-container').dialog({
            autoOpen: false,
            width: _ajax_login_settings.dialog_width,
            resizable: false,
            modal: true
        });

    to

    ` $(‘.ajax-login-register-container’).dialog({
    autoOpen: false,
    width: _ajax_login_settings.dialog_width,
    resizable: false,
    modal: true,
    open: function(){
    $(‘.ui-widget-overlay’).bind(‘click’,function(){
    $(‘.ajax-login-register-container’).dialog(‘close’);
    })
    }
    });`

    Hope this helps someone…

    DJ

    Plugin Author Zane Matthew

    (@zanematthew)

    DJ & Karan,

    Thanks this helps me as well! I’ll add this to the next update!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Suggestions’ is closed to new replies.