Uncanny Owl
Forum Replies Created
-
Hi @o0llied, thanks for the screenshot and additional details.
This issue might have the same causes as your issue in the other ticket. reCaptcha relies on JS files to work, and if they are combined and minified it may affect the functionality of the reCaptcha or password reset.
While you are checking for a plugin or theme conflict to resolve the “eye” icon issue, please also try the password reset and reCaptcha to see if they are fixed as well.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Unusually large ‘eye’ on front end loginHi @o0llied, our front end developer took a look and noticed that you’re using a plugin or some kind of caching that combines and minifies all of your CSS and JS files. He suggested you exclude these files from the merging/minification to see if that resolves the issue:
/wp-content/plugins/uncanny-learndash-toolkit/src/assets/frontend/dist/bundle.min.css/wp-content/plugins/uncanny-learndash-toolkit/src/assets/frontend/dist/bundle.min.jsIf that doesn’t work, he suspects there may be a plugin or theme conflict happening on your site. If your site is not live yet (or if you have a staging copy) please try disabling all other plugins to see if that resolves the issue. If not, try switching themes to check for a theme conflict.
Let us know how that goes!
Hi @o0llied, thanks for reaching out. What you’re seeing is likely a result of some extra security either enforced by a plugin on your site or set up by your host. Could you let us know what host you’re using, and provide a screenshot of the second reset password page? It might also help to reach out to your host to let them know what you’re experiencing.
Regarding your other request, we’ll have our front-end developer provide some guidance on what you can do there, but he’s not available until tomorrow. Thanks for your patience!
Hi @timrogers633,
One of our developers believes that they have found the source of the issue (the $error variable is not defined).
They are currently working on a fix, which will be included in the next release. Thanks for letting us know about this!
David @ Uncanny Owl
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Not enrolled redirect not workingHi @memeworx ,
It sounds like you’re using both the login redirect and not enrolled redirect modules. The Not Enrolled Redirect settings for courses would apply when users aren’t enrolled in a course and try to access that course, but wouldn’t affect login behaviour. As for the login redirect, there is no way to distinguish between LearnDash students and other users. If you want to separate behaviour by role, there are other plugins that can do this, but our module only has a generic login redirect. And in some cases, any Woo redirect behaviours might be overriding ours, in which case a code snippet to change behaviour.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Support version for LearndashHi @devdigith ,
I’m afraid that recent releases don’t officially support a version of LearnDash that old. Some modules may work, but if you do run into any issues we unfortunately wouldn’t be able to support them.
If you do purchase and need an older version of our plugin that is compatible with what you’re using, reach out via our Help Desk and we can provide older copies.
Thanks
Hi @asiegle , I wanted to confirm that we have replied to the ticket you raised via our Help Desk. Since it’s being handled there, and since this relates to our Pro version, we’ll go ahead and close this duplicate.
Thanks
Sorry @cte2087 , just because LearnDash has its own login system, are you definitely using ours? Can you confirm the exact shortcode you mention you’re using?
Since you mention using an SMTP plugin with Mailgun, is it showing that the Toolkit generated 4 emails?
Do you have a Staging environment where you could temporarily deactivate everything, even LearnDash, so only the Toolkit plugin is active? And then could you retest to see if a single email is sent? If we can confirm that it’s working that way, perhaps you could reactivate plugins gradually to try to assess when more emails start going out. And, like in the other ticket, it would help to see the system report so we can see if something else might be involved.
Thanks
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] New User email password set upHi @cte2087 ,
Were you able to try disabling modules within the Toolkit plugin alone to try to trace it to a single module? That would help us isolate what might be happening. So to confirm, disable Toolkit Pro, disable all modules, check again. If that works, enable a module you were using, test again, then repeat to see where it fails. It would also still help a lot to see the system report from LearnDash LMS > Settings > Support. It would help to see what other plugins might be involved and their versions.
Since you are using Pro, you can also send that to our Help Desk via your account on our site.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] New User email password set upSorry, what are you using to send out new user emails? The Toolkit doesn’t support this type of functionality natively, as it’s not involved with user creation.
You mention using both our free version and Pro, and to confirm, your test case then was that there was no change when deactivating Pro, but there was when deactivating the free Toolkit plugin? If so, were you able to trace it to a specific module, like which one being active affected the URLs? This would help us trace it, but it would help to understand what’s creating the user and what’s sending these emails out. A system report from LearnDash LMS > Settings > Support would also help us see what else is on the site that might be involved. We haven’t had any similar reports, so it sounds like it’s tied to something else that’s in use in the environment.
Thanks
Hi @cte2087 ,
The Toolkit itself would not fire more than one email. To confirm, when you mention “LearnDash password reset function”, you do mean our Front End Login module specifically, so you are using some type of [uo_login] shortcode? Is the page excluded from all types of caching?
For the emails themselves, are you using your host to send them or a transactional email service? You mention that everything is deactivated, but does that include LearnDash then, any plugin to support email delivery and a default theme?
I wonder too if you use an email logging plugin to track what’s handed off to WordPress for email delivery. It would help to confirm that all emails go out from the same time from our plugin.
Only 1 of 4 working makes sense, since later requests would invalidate previous links.
If it’s not our module initiate the password reset email, can you confirm exactly what is doing it and if you have our Front End Login module enabled?
Thanks
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Login module always redirected to 404Hi Parm, it seems as though the WPS Hide Login plugin simply moves the login form /wp-login.php to a URL of your choosing. You still need to get users there somehow. Unfortunately, our login/logout links module isn’t compatible with WPS Hide Login because it doesn’t know what page you’ve set as your login page in the WPS Hide Login settings. However, even if it could detect the URL, it would simply output a direct link to the page, which would be the same as using a static link.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Resume button translationApologies for the very long delay here.
Our dev team says you should remove the custom text added to the Resume button settings page and then add the following filter to the functions.php file of your child theme:
function custom_learndash_resume_link_text( $resume_link_text ) { // Check the current language $current_language = defined('ICL_LANGUAGE_CODE') ? ICL_LANGUAGE_CODE : 'en'; // Set text based on the language if ( $current_language == 'es' ) { return 'Reanudar Curso'; // Spanish text } else { return 'Resume Course'; // English text (default) } } add_filter( 'learndash_resume_link_text', 'custom_learndash_resume_link_text' );Replace the text “Resume Course” above with the text you had been using in the module settings and replace “Reanudar Curso” with your Spanish text.
Hopefully that helps.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Login module always redirected to 404We did some additional testing on our end and it while we weren’t able to reproduce the issue you’re seeing with 404 errors, we did see an issue with a redirect loop occurring with the “Log In” link while the WPS hide login plugin was active.
It’s important to use a special link when users are logging out because that link has to be dynamically generated. However, the “Log In” link is a static link to the login page (as defined in the Front End Login module settings). Could you try using a static link to the login page instead of the Log In/Log Out shortcode/menu link to see if that works? You could then hide the Log In link if users are logged in, and hide the Log Out link if users are logged out, using the Menu Item Visiblity module. That would behave the same way the Log In/Log Out link works.
Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Login module always redirected to 404Hi @parms ,
Thanks for making us aware of the issue and the context.
I wonder if we could get more details, as we’re having trouble reproducing the problem on our site. Can you confirm what you mean by “I’m using Uncanny Owl’s log-in module to redirect users to the log-in page”, so how are you using one of our tools to take anonymous visitors to a login page? Otherwise, in the Front End Login module settings, have you set the login page map to match what you’re using in WPS Hide Login?
Thanks