Hello,
it seems I discovered a quite annoying bug with the Enfold admin panel.
Screenshot: https://take.ms/N0tR2
After uploading custom flags in SVG format to the WPML plugin language configuration, the language switcher in the Enfold admin panel entirely covers the first configuration menu items so they become unavailable and cannot be accessed anymore.
To be able to change settings, I need to revert the WPML custom flags which is really time consuming (and visitors will notice this, of course!).
Can this please be fixed in the next update release?
Thanks,
—Julian
Hey jpa6,
Thank you for the inquiry.
Is it working correctly when you upload flag images in jpg or png format? The impact of using svg for the flags is quite minimal if you are just trying to decrease the page size or improve the loading speed.
Please try to add this code in the functions.php file to limit the size of the flags in theme options panel.
add_action('admin_head', 'ava_admin_head_styles');
function ava_admin_head_styles() {
echo '<style>
.avia_cur_lang, .avia_cur_lang svg, .avia_cur_lang img {
max-height: 12px;
max-width: 18px;
}
</style>';
}
Best regards,
Ismael