Advertisement
Guest User

Remove Autofill Form

a guest
Feb 28th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Site plugin for tocift.com
  4. Description: Site specific code for http://184.154.244.76/~tocift07/
  5. */
  6. /* Begin Adding Functions Below This Line; Do not include an opening PHP tag as this sample code already includes one! */
  7.  
  8. add_action('wp_enqueue_scripts', 'my_autocomplete_off_for_ee_forms', 20);
  9. function my_autocomplete_off_for_ee_forms(){
  10. $custom_js = 'jQuery(document).ready(function($){';
  11. $custom_js .= '$( "input.ee-reg-qstn" ).attr( "autocomplete", "off" );';
  12. $custom_js .= '});';
  13. wp_add_inline_script('ee_form_section_validation', $custom_js);
  14. }
  15.  
  16.  
  17.  
  18.  
  19.  
  20. /* Stop Adding Functions */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement