Last active
          November 27, 2019 09:53 
        
      - 
      
- 
        Save max-kk/bbea2d9bff3bc3fa5e54b24253d7eed8 to your computer and use it in GitHub Desktop. 
    LRM :: reorder registration fields
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* PUT YOUR JS HERE */ | |
| jQuery( document ).ready(function($) { | |
| var phone_html = $(".fieldset--phone").get(0).outerHTML; | |
| $(".lrm-signup-section .fieldset--phone").remove() | |
| $(".lrm-signup-section .fieldset--email").before(phone_html); | |
| }); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* PUT YOUR JS HERE */ | |
| jQuery( document ).ready(function($) { | |
| var phone_html = $(".fieldset--phone").get(0).outerHTML; | |
| $(".lrm-signup-section .fieldset--phone").remove() | |
| $(".lrm-signup-section .lrm-remember-me-checkbox").parent().before(phone_html); | |
| $(".lrm-remember-me").attr("checked", "checked"); | |
| }); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment