Advertisement
Aurangajeb

Show Guest name & email field bottom of the form

Sep 14th, 2021
2,741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2. @ Show Guest name & email field bottom of the form
  3. **/
  4.  
  5. jQuery(document).ready(function( $ ) {
  6.     $(".el-name, .el-email").each(function() {
  7.         $(this).parent().append(this);
  8.     });
  9.     $(".wpuf-submit").each(function() {
  10.         $(this).parent().append(this);
  11.     });  
  12.  
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement