• I am really enjoying this plugin, in fact I am sad I haven´t found it sooner.

    I find it very much complete, with lots of options to configure, that’s why I am amazed that I cant find a way to configure the widget.

    I mean, i did some css on it, but I like to be able to set the amount of entries to show… or for example, in the “recurrent countries” one, on desktop I see it as a list, but on smartphone it shows enormous flags for every country that I wold love to deactivate.

    Can you help me?

    Thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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,

    Thread Starter lulupont

    (@lulupont)

    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

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘configuration for the widget?’ is closed to new replies.