(function($){ $('.wpd-login').on('click', function(){ var popuplink = $('a.jeg_popuplink'); if ( popuplink.length > 0 ) { popuplink.each(function(i,e){ var element = $(e); if ( element.attr('href') === '#jeg_loginform' ) { element.trigger('click'); return false; } }) } }); })(jQuery)
It allows us to make a button clickable, so I added your button's class name. It does open the button but within seconds it redirects to the homepage because we have to put in the whole URL.
Please advice.
This is the URL for our login form: #jeg_loginform
(function($){ $('.wpd-login').on('click', function(e){ e.preventDefault(); var popuplink = $('a.jeg_popuplink'); if ( popuplink.length > 0 ) { popuplink.each(function(i,e){ var element = $(e); if ( element.attr('href') === '#jeg_loginform' ) { element.trigger('click'); return false; } }) } }); })(jQuery)
The red marked part was added.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
I did notice now that when you click to "log out" above WPdiscuz that the login pop up still comes up. I guess it's calling that class no matter what. Any way to fix that?
Please remove the code provided in the previous post and use this one:
(function($){ $('.wpd-popup-login-form').on('click', function(e){ e.preventDefault(); var popuplink = $('a.jeg_popuplink'); if ( popuplink.length > 0 ) { popuplink.each(function(i,e){ var element = $(e); if ( element.attr('href') === '#jeg_loginform' ) { element.trigger('click'); return false; } }) } }); })(jQuery);
I did notice now that when you click to "log out" above WPdiscuz that the login pop up still comes up. I guess it's calling that class no matter what. Any way to fix that?
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.