<?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: Disable Plugin Update Message</title>
		<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message</link>
		<description>Gravity Support Forums Topic: Disable Plugin Update Message</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:32:27 +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/disable-plugin-update-message" rel="self" type="application/rss+xml" />

		<item>
			<title>Shaun on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-270602</link>
			<pubDate>Thu, 23 May 2013 09:29:12 +0000</pubDate>
			<dc:creator>Shaun</dc:creator>
			<guid isPermaLink="false">270602@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'd like to add a +1 to this, your plugin is really the only one that not only broadcasts on the dashboard, but also puts a &#34;1&#34; badge in the sidebar in an inappropriate place each time there is an update.&#60;/p&#62;
&#60;p&#62;Even people without sufficient permissions to upgrade plugins see this message!&#60;/p&#62;
&#60;p&#62;It is really overkill, and seems to be completely out of line with other plugins. Why do you think it is necessary to add this, when other plugins do not? Why show the dashboard message and the &#34;1&#34; badge to those that don't have permission to update? It just causes confusion and questions from customers.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-153350</link>
			<pubDate>Sun, 24 Feb 2013 01:05:15 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">153350@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for posting that solution.&#60;/p&#62;
&#60;p&#62;Also, you should not be making any changes to the Gravity Forms files where you would need to worry about this: &#34;so that any changes don't get overridden when I actually do my regular plugin updates&#34;&#60;/p&#62;
&#60;p&#62;If you have problems you cannot solve without modifying the plugin files, we'd like to hear about it to be able to help, or could use your suggestions to improve the plugin.&#60;/p&#62;
&#60;p&#62;If you hide that 'upgrade available' message, please be sure to follow the blog or subscribe to email updates to be sure you don't miss a release.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rabmcnab on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-152917</link>
			<pubDate>Sat, 23 Feb 2013 06:27:42 +0000</pubDate>
			<dc:creator>rabmcnab</dc:creator>
			<guid isPermaLink="false">152917@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the reply David - sorry I didn't reply sooner, for some reason I didn't get the reply notification.   Thought I'd quickly come back in anyway with pretty much this answer.  For anyone else, rather than updating the CSS itself, which you'd need to redo after upgrades, you would create a method in functions.php and hook it to &#60;code&#62;admin_head&#60;/code&#62;;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/************* CUSTOM ADMIN CSS *****************/

function custom_admin_css() {
   echo &#38;#39;&#38;lt;style type=&#38;quot;text/css&#38;quot;&#38;gt;
            #gf_dashboard_message { display: none; }
         &#38;lt;/style&#38;gt;&#38;#39;;
}

add_action(&#38;#39;admin_head&#38;#39;, &#38;#39;custom_admin_css&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-101322</link>
			<pubDate>Tue, 11 Dec 2012 15:22:22 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">101322@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here you go:&#60;/p&#62;
&#60;p&#62;Adding the following to his css file should do the trick&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#gf_dashboard_message { display: none; }&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>rabmcnab on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-101252</link>
			<pubDate>Tue, 11 Dec 2012 10:57:57 +0000</pubDate>
			<dc:creator>rabmcnab</dc:creator>
			<guid isPermaLink="false">101252@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi David,&#60;/p&#62;
&#60;p&#62;Thanks for getting back to me - it's the main notification that sites right at the top of the Dashboard when you log in, here's a screenshot;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.mcnab.co/wp-content/uploads/2012/12/update-notification.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.mcnab.co/wp-content/uploads/2012/12/update-notification.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for your help,&#60;/p&#62;
&#60;p&#62;Robbie.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-100999</link>
			<pubDate>Mon, 10 Dec 2012 18:07:38 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">100999@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you take a screenshot and upload it to imgur or something similar and link it to us so we can see which message you want removed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rabmcnab on "Disable Plugin Update Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/disable-plugin-update-message#post-100785</link>
			<pubDate>Mon, 10 Dec 2012 06:36:55 +0000</pubDate>
			<dc:creator>rabmcnab</dc:creator>
			<guid isPermaLink="false">100785@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, apologies if this is a duplicate post, I had a decent look.&#60;/p&#62;
&#60;p&#62;Love your product, use it all the time.  Hate the intrusive plugin upgrade notification message right at the top of the admin screen.&#60;/p&#62;
&#60;p&#62;Can you let me know how to disable the update message so that any changes don't get overridden when I actually do my regular plugin updates on my sites?  Something I can drop into the functions.php on these sites? Thanks for any advice.&#60;/p&#62;
&#60;p&#62;Robbie.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
