Reply To: Theme Options not working

Support Forums Cian – WP Theme Theme Options not working Reply To: Theme Options not working

#4789
CreaboxThemes
Keymaster

Hi,

I really don’t know why it happened. It’s the first time I find this kind of problem. The solution has been to add a css style to remove that div. Maybe that div is added by the WP Engine styles, I don’t know.

The code I have added to the file functions.php is the next:

add_action('admin_head', 'my_custom_css');

function my_custom_css() {
  echo '<style>
    .vp-wrap .vp-upload .field .image { display: none } 
  </style>';
}

Regards