Advertisement
chrishajer

Fix position of form modal dialog

Aug 14th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. // dequeue the media-upload.min.js file which is causing the new form modal to be stretched up and off screen
  2. add_action( 'admin_enqueue_scripts', 'dequeue_media_upload' );
  3. function dequeue_media_upload() {
  4.     if ( is_admin() && (RGForms::is_gravity_page() ))
  5.         wp_dequeue_script( 'media-upload' );
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement