Skip to content

Commit

Permalink
Fixes upload buttons not sohiwng up
Browse files Browse the repository at this point in the history
  • Loading branch information
omarkasem committed Nov 18, 2024
1 parent 29c8ec0 commit cf9276e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions includes/extensions/edit-entry/class-edit-entry-render.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,12 @@ private function print_scripts() {

// File download/delete icons
wp_enqueue_style( 'gform_admin_icons' );

// Fixes the icons not showing up correctly in Gravity Forms 2.9+
if ( version_compare( GFForms::$version, '2.9', '>=' ) ) {
wp_add_inline_style( 'gform_theme', '.gform-icon { font-family: gform-icons-admin !important; }' );
}

}


Expand Down

0 comments on commit cf9276e

Please sign in to comment.