• Being a total novice developer and deciding to create a website to sell online courses I naturally looked around and settled on a popular LMS with an “Integrated login and registration system” … That doesn’t work and is horribly broken.

    The appeal of that software was the pop-up login and reg and the redirects and ability to add captcha, but alas I was left disappointed…

    …Until I found this excellent plugin.

    It has all of the features of the afore mentioned LMS but works, is more customisable, better executed, nicer looking and makes the onboarding process look super professional imo.

    I have added the captcha and verification add-ons and thought it only fair to leave a review to help raise awareness of this excellent plugin.

    As an aside, My particular usage case and website design resulted in the ’email verified’ banner not timing out. I sent a support ticket, received a response within 20 mins with the code snippet to fix the issue. Having done customer services most of my life I can honestly say this is first class.

    The code in case you need it (I’m an merely the messenger. use at your own discretion) It times the banner out in 4 seconds.. adjust to suit your own needs.

    add_action( 'wp_footer', function(){
    
                    ?>
    
                    <script type="text/javascript">
    
                                    jQuery(document).ready(function($){
    
                                                    setTimeout(function(){
    
                                                                    $('.xoo-uv-verified-success').hide();
    
                                                    }, 4000)
    
                                    });
    
                    </script>
    
                    <?php
    
    } );

    Anyway. Enough waffle, more worky. .. Cheers Pulkit for the great plugin.

  • The topic ‘Exactly what I’ve been searching for’ is closed to new replies.