This is just FYI, when installing the WP-Statistics Plugin there will be issues with the CSS in the backend as it adds .postbox { overflow: hidden; } this will make “add element” dialogs for flex content fields cut of, if there is not enough content to generate enough height. This is clearly an issue of WP-Statistics, but others might find it helpful that this snippet in functions.php solves the problem:
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
.postbox.acf-postbox {
overflow: visible !important;
}
</style>';
}
Cheers Sascha
Hi @saschapi
Thanks for sharing this information.
As you said, this issue is more related to WP-Statistics and contacting their support would be the correct way to solve this issue.
Thanks π