<?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: Hook to remove Update Available icon in menu</title>
		<link>https://legacy.forums.gravityhelp.com/topic/hook-to-remove-update-available-icon-in-menu</link>
		<description>Gravity Support Forums Topic: Hook to remove Update Available icon in menu</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 16:14:29 +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/hook-to-remove-update-available-icon-in-menu" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Hook to remove Update Available icon in menu"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/hook-to-remove-update-available-icon-in-menu#post-72451</link>
			<pubDate>Fri, 24 Aug 2012 07:13:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">72451@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is a good suggestion.  I needed to do something similar in the past so I hid the icon with CSS.  There are two steps to this:&#60;/p&#62;
&#60;p&#62;1. create an admin stylesheet with the &#34;display:hidden&#34; for the elements you don't want to see&#60;br /&#62;
2. load the stylesheet in the wp-admin&#60;/p&#62;
&#60;p&#62;Here is the stylesheet I used:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
/* hide the update available icon for the forms menu */
li#toplevel_page_gf_edit_forms span.update-plugins {
        display:none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I saved that to a file called wp-admin.css in my child theme's directory.  Then I load the stylesheet in the admin via functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
function load_custom_wp_admin_style() {
        wp_register_style( &#38;#39;custom_wp_admin_css&#38;#39;, get_stylesheet_directory_uri() . &#38;#39;/wp-admin.css&#38;#39;, false, get_bloginfo(&#38;#39;version&#38;#39;) );
        wp_enqueue_style ( &#38;#39;custom_wp_admin_css&#38;#39; );
}
add_action( &#38;#39;admin_enqueue_scripts&#38;#39;, &#38;#39;load_custom_wp_admin_style&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Your idea is a good one and we'll leave it open under feature requests.   Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>roimediaworks on "Hook to remove Update Available icon in menu"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/hook-to-remove-update-available-icon-in-menu#post-72101</link>
			<pubDate>Wed, 22 Aug 2012 12:30:30 +0000</pubDate>
			<dc:creator>roimediaworks</dc:creator>
			<guid isPermaLink="false">72101@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In a wordpress network of sites, site-owners/admins aren't able to update plugins. Yet if a Gravity Forms update is available, an icon appears beside their 'Forms' menu item.&#60;/p&#62;
&#60;p&#62;They think it's a new form submission because the icons are the same - when really it's an update they can't do anything about.&#60;/p&#62;
&#60;p&#62;This is misleading and confusing - it would be great if there was a hook that could be put into &#60;code&#62;create_menu()&#60;/code&#62; for disabling &#60;code&#62;$update_icon&#60;/code&#62; via a theme/plugins &#60;code&#62;functions.php&#60;/code&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
