Hi @liquidonthedrums,
I’m afraid since Gravity Forms is a premium plugin we couldn’t fully test it out in our system to say what exactly is causing it.
From the given screenshot it looks more like a conflict. Is it possible to check which exact setting or module within Gravity forms is causing the issue? That’s deactivating or activating any specific setting causes the mentioned message to occur?
Could you also try creating a custom Widget and see whether you get the same issue? This would help in pin pointing where the conflict is.
You can use the following code to create a custom dashboard widget:
<?php
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget('custom_help_widget', 'Another Test Widget', 'custom_dashboard_help');
}
function custom_dashboard_help() {
echo '<p>Hello World</p>';
}
You can add the above code as a mu-plugins. Please check this link on how to implement the above code as a mu-plugins:
https://premium.wpmudev.org/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
The above should create a widget as seen here:
Screenshot at 19:39:39.png
Please do let us know how that goes. Have a nice day ahead.
Kind Regards,
Nithin
Hi @liquidonthedrums,
We haven’t heard from you in a while, I’ll close this thread. Feel free to re-open this thread or let us know if you have any further queries.
Best Regards
Nithin