<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: How can I remove the Gravity Forms metabox from the Dashboard ?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard</link>
		<description>Gravity Support Forums Topic: How can I remove the Gravity Forms metabox from the Dashboard ?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 05:22:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard" rel="self" type="application/rss+xml" />

		<item>
			<title>mike on "How can I remove the Gravity Forms metabox from the Dashboard ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard#post-25104</link>
			<pubDate>Mon, 09 May 2011 14:20:46 +0000</pubDate>
			<dc:creator>mike</dc:creator>
			<guid isPermaLink="false">25104@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Alex, that did it !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "How can I remove the Gravity Forms metabox from the Dashboard ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard#post-24082</link>
			<pubDate>Mon, 25 Apr 2011 11:50:16 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">24082@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The problem is that your code is executing before Gravity Forms has registered the Dashboard meta box. Simply change the priority in your add_action() call and it should work for your. See below&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function remove_dashboard_widgets(){
  global $wp_meta_boxes;
  unset($wp_meta_boxes[&#38;#39;dashboard&#38;#39;][&#38;#39;normal&#38;#39;][&#38;#39;core&#38;#39;][&#38;#39;rg_forms_dashboard&#38;#39;]);
}
add_action(&#38;#39;wp_dashboard_setup&#38;#39;, &#38;#39;remove_dashboard_widgets&#38;#39;, 11);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>mike on "How can I remove the Gravity Forms metabox from the Dashboard ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard#post-24058</link>
			<pubDate>Mon, 25 Apr 2011 10:46:01 +0000</pubDate>
			<dc:creator>mike</dc:creator>
			<guid isPermaLink="false">24058@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi illutic, &#60;/p&#62;
&#60;p&#62;No actually it doesn't. All I can see are the following meta boxes :&#60;/p&#62;
&#60;p&#62;dashboard_right_now&#60;br /&#62;
dashboard_recent_comments&#60;br /&#62;
dashboard_incoming_links&#60;br /&#62;
dashboard_plugins&#60;br /&#62;
dashboard_quick_press&#60;br /&#62;
dashboard_recent_drafts&#60;br /&#62;
dashboard_primary&#60;br /&#62;
dashboard_secondary&#60;/p&#62;
&#60;p&#62;Nothing that seems to be the Gravity Forms box. But then, where is it ? If it is showing on the dashbord, why is it not in $wp_meta_boxes ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hiranthi on "How can I remove the Gravity Forms metabox from the Dashboard ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard#post-24050</link>
			<pubDate>Mon, 25 Apr 2011 03:49:47 +0000</pubDate>
			<dc:creator>Hiranthi</dc:creator>
			<guid isPermaLink="false">24050@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You did check the contents of $wp_meta_boxes to make sure $wp_meta_boxes['dashboard']['normal']['core']['rg_forms_dashboard'] exists?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mike on "How can I remove the Gravity Forms metabox from the Dashboard ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-remove-the-gravity-forms-metabox-from-the-dashboard#post-24032</link>
			<pubDate>Sun, 24 Apr 2011 11:41:54 +0000</pubDate>
			<dc:creator>mike</dc:creator>
			<guid isPermaLink="false">24032@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am trying to remove the Gravity Forms metabox from the WP dashboard. Usually I use this to remove stuff from the dashboard :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_dashboard_widgets(){
  global$wp_meta_boxes;
  unset($wp_meta_boxes[&#38;#39;dashboard&#38;#39;][&#38;#39;normal&#38;#39;][&#38;#39;core&#38;#39;][&#38;#39;rg_forms_dashboard&#38;#39;]);
}
add_action(&#38;#39;wp_dashboard_setup&#38;#39;, &#38;#39;remove_dashboard_widgets&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But it doesn't seem to work with Gravity Forms. Does anybody know how to fix that ?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
