Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_filter( 'gform_pre_render', 'add_notreadonly_script');
  2. function add_notreadonly_script( $form ) {
  3. ?>
  4. <script type="text/javascript">
  5. jQuery(document).ready(function(){
  6. jQuery("li.gf_notreadonly input").removeAttr("readonly");
  7. }
  8. </script>
  9. <?php
  10. return $form;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement