The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Trying to add Login URL using a # link (pop up login form)
Summarize Topic
✦
✦
✦
AI is analyzing the discussion...
How-to and Troubleshooting
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
Aug 16, 2020 11:13 pm
(@ajoyshop)
Active Member
Joined: 6 years ago
I'm trying to have it so when people click login on WPDisquz that it opens our Jegthemes login form. Unfortunately, Jegthemes does not have a literal login-in page to link to but a # link pop up form. I have tried linking to https://bagogames.com/#jeg_loginform in your settings 'login url' and it just redirects to the homepage. I have also tried just adding '#jeg_loginform' but your plugin won't accept that as a valid URL. Is there any way to make it so we can simply add the #url or it make it so it can open the login pop up?
We found this on the theme developers site:
(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
Support
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
Aug 17, 2020 1:16 pm
(@asti)
Illustrious Member
Joined: 8 years ago
Hi @ajoyshop ,
Use this one:
(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.
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
Aug 17, 2020 6:28 pm
(@ajoyshop)
Active Member
Joined: 6 years ago
Thank you so much! It works.
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
Aug 17, 2020 6:45 pm
(@ajoyshop)
Active Member
Joined: 6 years ago
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?
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8297
Aug 18, 2020 12:38 pm
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
@ajoyshop ,
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?
Use this code:
add_filter("wpdiscuz_login_link", function ($login) { return str_replace(" href=", " class='wpd-popup-login-form' href=", $login); });
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
Aug 18, 2020 4:42 pm
(@ajoyshop)
Active Member
Joined: 6 years ago
Now when I click login it doesn't even pop up, it just redirects to the homepage.
Topic starter
Translate
▼
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
Show original
Translating...
Aug 18, 2020 4:55 pm
(@ajoyshop)
Active Member
Joined: 6 years ago
When I re-added the old top code it works again but the add_filter doesn't seem to be doing anything.
Super Globals
Options and Features