Here is an example of how you can add some text before the submit of the ticket form. You can add this code to your theme’s FUNCTIONS.php file or to a custom plugin – a plugin is better since you wouldn’t lose changes when you switch themes. add_action( ‘wpas_submission_form_inside_before_submit’, ‘inside_before_test’); function inside_before_test() { echo ‘This is… Continue reading How To Add Content Before The Submit Button
Category: Customization
How To Create A Custom Registration Form
One of the common requests we get is to customize our login form. Unfortunately Awesome Support does not have that feature – primarily because there are at least a dozen login-form customizer plugins out there. We figured there was no need to build yet another plugin to offer the same functionality. Instead, here is the… Continue reading How To Create A Custom Registration Form