Hi @aliaslina,
Warning messages like this display when your site has “Debug Mode” turned on. Debug mode is a method for developers to use to find issues in their code and compatibility problems with different versions of PHP (the server language WordPress uses). Debug mode is usually only used on development sites or non-live sites.
You’d have to reach out to theme support to get a better understanding, and see if they know about/are working on it because I don’t get those warnings in any of my test sites using GiveWP.
In the meantime while you get the problem resolved, here’s how you can hide those warnings: in your wp-config.php file (which you can get to via SFTP or through your web host’s file manager) look for a line like this:
define('WP_DEBUG', true);
Replace it with the following Lines:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors', 0);
Again, this method is normally only used for development, not on live sites.
If you need assistance with that, your web host should be able to help. Also, there is some official documentation on that: https://codex.www.ads-software.com/WP_DEBUG
Let me know if that hides the warnings.