Hi @lulupont,
Thank you so much for your kind words and for using our plugin.
We truly appreciate your feedback!
First of all, please accept our apologies for the delayed response.
We’re sorry for any inconvenience caused.
Regarding your question:
The layout differences you noticed between desktop and mobile are intentional.
Due to the limited screen space on mobile devices, these design choices were made to ensure better responsiveness and readability.
It’s a design-specific behavior rather than a configurable feature.
You’re absolutely right — at the moment, there is no built-in option to control the number of entries shown in the widget or to disable the large flags on mobile.
To achieve this, you’ll need to apply custom CSS adjustments based on your preferences.
If you need help with writing the necessary CSS, feel free to let us know — we’ll be happy to assist.
Thanks again for your support!
Best regards,
Ok, I understand. I would like to disable or hide the widget in the mobile version via css, but I dont know how to do it.
Could you indicate me how to?
Thanks
Hi @lulupont,
You can hide the widgets on mobile devices using the following code snippet:
add_action('admin_head', function () {
?>
<style>
@media (max-width: 767px) {
#wp-statistics-top-visitors-widget,
#wp-statistics-recent-widget {
display: none !important;
}
}
</style>
<?php
});
You can place this code in your child theme’s functions.php file, or use a plugin like Code Snippets to add it safely.
Feel free to add the IDs of other widgets in the same way if you’d like to hide them too.
Let me know if you need help identifying other widget IDs.
Best regards,
Mehmet