Redirect the login modal to the login page

If you want to redirect all the login form modal links to the login form page (with “/account/login” URL, that can be customized in HivePress/Templates), please use the JS code snippet suggested below.

jQuery('a[href=#user_login_modal]').each(function () {
	jQuery(this).on('click', function (e) {
		e.preventDefault();

		jQuery('.site-loader').css('z-index', '99999').show();

		window.location.href = 'https://example.com/account/login';
	});
});

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.