Enrich Your WordPress Knowledge Regularly
How to display the Guest Name & Email Field at the bottom of The WPUF Form
Suppose you are using the WPUF plugin for the guest post submission. You will notice the name and email will appear at the top of the form. This code snippet will help you to move the bottom of the form.
/**
@ Show Guest name & email field bottom of the form
**/
jQuery(document).ready(function( $ ) {
$(".el-name, .el-email").each(function() {
$(this).parent().append(this);
});
$(".wpuf-submit").each(function() {
$(this).parent().append(this);
});
});
Note: You must use a third-party plugin like “Code Snippets” to utilize the JS/JQuery code.