Skip to Content

Login Popup

About

Login popup allows you to login from any page of the store.

View Source Code

Show login popup manually

By default login popup is shown when customer press “Proceed to checkout” button, but due to store configuration or cart contents it’s not possible to checkout as guest.

If you would like to show popup in other scenarios you need to write the following js code:

$('#authenticationPopup').authPopup('showModal')

Example:

$(document).on('click', '.authorization-link', (event) => {
    event.preventDefault();
    $('#authenticationPopup').authPopup('showModal');
});