Hi @avinashk30
Looks like your WP_debug is turned on causing background notices to get displayed, can you please turn it off like this and let us know?
You can disable debugging and learn more about that here: https://www.ads-software.com/support/article/editing-wp-config-php/
To do this:
1. You will need to login to your site via FTP
2. download the wp-config.php file, This file is located in the root of your WordPress file directory and contains your website’s base configuration details, such as database-connection information.
3. duplicate this file to create a backup
4. edit the below line of code as specified below
5. save and re-upload this file to your site.
Just in case anything went wrong, you would have a backup of the original file that you can re-upload if needed.
Find this snippet with in the wp-config.php:
define('WP_DEBUG', true);
Replace that with the below snippet in your wp-config.php located within
your WordPress Folder, this snippet would turn on the errors and error
log for WordPress and help in debugging.
// disable WP_DEBUG mode
define('WP_DEBUG', false);