Skip to main content

Possible Version Number Error in Brizy Free Plugin Update (2.510)

Comments

5 comments

  • Ariel H.

    Hi Adam,

    Thank you for bringing this to our attention.

    We’ve already escalated a similar version number issue to our senior support team. It seems to be affecting sites hosted on SiteGround, where WordPress displays an incorrect update prompt for Brizy version 2.510. Could you please confirm if your site is also hosted with SiteGround? This will help us better identify the root cause.

    Looking forward to your response.

    Best regards,
    Ariel H.

    0
  • Adam Newbold

    Hi Ariel, 

    Thanks for your quick reply. Yes, I confirm that I am using SiteGround for my hosting. It's interesting that it's affecting just those sites. Thank you for looking into it!

    Many thanks,

    Adam

     

    0
  • Ariel H.

    Hi Adam,

    Thanks for confirming that you're using SiteGround.

    It seems this issue may be related to some caching on their end, as we haven’t seen the same version warning appear with other hosting providers. You can safely ignore the prompt, but if you'd prefer to hide it from the Plugins area, you can add the following code to your theme’s functions.php file or as a PHP snippet using the WPCode Lite plugin.

    function hide_brizy_update_notice( $value ) {
        if ( isset( $value ) && is_object( $value ) ) {
            unset( $value->response['brizy/brizy.php'] );
        }
        return $value;
    }
    add_filter( 'site_transient_update_plugins', 'hide_brizy_update_notice' );


    Let me know if you need help implementing it.

    Best regards,
    Ariel H.

    0
  • Antonio Tedesco

    And also, SiteGround's dynamic cache system is breaking single elements (sliders in my case), but as you cannot disable it this script could be added to .htaccess (as suggested here https://www.siteground.com/kb/disable-dynamic-caching-website/)

    <IfModule mod_headers.c>Header set Cache-Control "private"</IfModule>


    0
  • Adam Newbold

    Thank you, Ariel and Antonio for the helpful replies! I will see what I can do to implement your suggestions.

    Many thanks,

    Adam

    0

Please sign in to leave a comment.