Title: lukebme's Replies | WordPress.org

---

# lukebme

  [  ](https://wordpress.org/support/users/lukebme/)

 *   [Profile](https://wordpress.org/support/users/lukebme/)
 *   [Topics Started](https://wordpress.org/support/users/lukebme/topics/)
 *   [Replies Created](https://wordpress.org/support/users/lukebme/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/lukebme/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/lukebme/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/lukebme/engagements/)
 *   [Favorites](https://wordpress.org/support/users/lukebme/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sensei LMS Certificates] View certificate button issues](https://wordpress.org/support/topic/learner-profile-customisation/)
 *  Thread Starter [lukebme](https://wordpress.org/support/users/lukebme/)
 * (@lukebme)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/learner-profile-customisation/#post-16613675)
 * Update: the issue seems to be related to if the user has completed the course
   before and has multiple certificates. If I delete all certificates and teh course
   is completed again, the issues is resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sensei LMS - Online Courses, Quizzes, & Learning] Register form showing on My Courses](https://wordpress.org/support/topic/register-form-showing-on-my-courses/)
 *  Thread Starter [lukebme](https://wordpress.org/support/users/lukebme/)
 * (@lukebme)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/register-form-showing-on-my-courses/#post-16568092)
 * Never mind, I’ve just used a redirect in the login-form.php to the login page
   I want to use. If anyone else has this issue, I’ve copied the login-form.php 
   to my theme directory and updated it to:
 *     ```wp-block-code
       <?php
       /**
        * The Template for displaying the sensei login form
        *
        * Override this template by copying it to yourtheme/sensei/user/login-form.php
        *
        * @author      Automattic
        * @package     Sensei
        * @category    Templates
        * @version     2.0.0
        */
   
       if ( ! defined( 'ABSPATH' ) ) {
       	exit; // Exit if accessed directly
       }
   
       /**
        *  Executes before the Sensei Login form markup begins.
        *
        * @since 1.9.0
        */
   
       function Redirect($url, $permanent = false)
       {
         header('Location: ' . $url, true, $permanent ? 301 : 302);
         exit();
       }
       Redirect('https://www.example.com/yourloginpage/', false);
   
       ?>
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)