<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: WP Admin Menu</title>
		<link>http://www.kriesi.at/support/topic/wp-admin-menu</link>
		<description>Support Forum - Topic: WP Admin Menu</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 05:04:41 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/wp-admin-menu" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-99126</link>
			<pubDate>Sat, 02 Mar 2013 08:58:54 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">99126@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Schön, dass ich helfen konnte :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shorty05 on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-99124</link>
			<pubDate>Sat, 02 Mar 2013 08:41:29 +0000</pubDate>
			<dc:creator>Shorty05</dc:creator>
			<guid isPermaLink="false">99124@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Awesome Peter! &#60;/p&#62;
&#60;p&#62;Ich dank dir für deine schnelle hilfe! Ihr habt wirklich den besten Support am Start!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-99119</link>
			<pubDate>Sat, 02 Mar 2013 08:13:46 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">99119@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can try following code instead:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if( is_admin() )
			{
				add_action(&#38;#39;admin_print_scripts&#38;#39;, &#38;#39;ino_hide_admin_options&#38;#39;);
			}
			else
			{
				add_action(&#38;#39;wp_head&#38;#39;, &#38;#39;ino_hide_admin_options&#38;#39;);
			}

		function ino_hide_admin_options()
		{
			echo &#38;quot;\n &#38;lt;style type=&#38;#39;text/css&#38;#39;&#38;gt;  \n&#38;quot;;
			echo &#38;quot;#wp-admin-bar-avia, #wp-admin-bar-templates, #toplevel_page_avia{display: none !important;}&#38;quot;;
			echo &#38;quot;&#38;lt;/style&#38;gt;\n \n &#38;quot;;
		}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Shorty05 on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-99088</link>
			<pubDate>Fri, 01 Mar 2013 23:04:48 +0000</pubDate>
			<dc:creator>Shorty05</dc:creator>
			<guid isPermaLink="false">99088@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter, &#60;/p&#62;
&#60;p&#62;another question ...&#60;/p&#62;
&#60;p&#62;the function works well but for some reason the &#34;Theme Options&#34; edit link is still visible if i have the admin bar active for a user + when i view the page. &#60;/p&#62;
&#60;p&#62;Means it works fine if i am viewing the dashboard but as soon as i am looking at the live page i still can see the menu links. Is there a way to get that removed as well? &#60;/p&#62;
&#60;p&#62;Shorty
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-96893</link>
			<pubDate>Fri, 15 Feb 2013 08:16:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">96893@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can try to add following code to functions.php (at the very bottom) and change the &#34;My text&#34; title to something else...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;#39;avia_filter_backend_page_title&#38;#39;, &#38;#39;avia_change_theme_title&#38;#39;);
function avia_change_theme_title() {
    return &#38;#39;My text&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>mjmoran on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-96802</link>
			<pubDate>Thu, 14 Feb 2013 17:08:25 +0000</pubDate>
			<dc:creator>mjmoran</dc:creator>
			<guid isPermaLink="false">96802@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there a way to change the name of &#34;replete&#34; in the admin sidebar and use something more general so clients know what it is for?&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-96312</link>
			<pubDate>Tue, 12 Feb 2013 08:31:46 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">96312@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Glad that you solved the problem :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Shorty05 on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-96308</link>
			<pubDate>Tue, 12 Feb 2013 08:16:52 +0000</pubDate>
			<dc:creator>Shorty05</dc:creator>
			<guid isPermaLink="false">96308@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;got it ;) sorry ! but maybe other user will find the post useful. &#60;/p&#62;
&#60;p&#62;i added the css id to your code ( #toplevel_page_avia )&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if( is_admin() )
			{
				add_action(&#38;#39;admin_print_scripts&#38;#39;, &#38;#39;ino_hide_admin_options&#38;#39;);
			}

		function ino_hide_admin_options()
		{
			echo &#38;quot;\n &#38;lt;style type=&#38;#39;text/css&#38;#39;&#38;gt;  \n&#38;quot;;
			echo &#38;quot;#wp-admin-bar-avia, #wp-admin-bar-templates, #toplevel_page_avia{display: none !important;}&#38;quot;;
			echo &#38;quot;&#38;lt;/style&#38;gt;\n \n &#38;quot;;
		}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Shorty05 on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-96306</link>
			<pubDate>Tue, 12 Feb 2013 08:12:50 +0000</pubDate>
			<dc:creator>Shorty05</dc:creator>
			<guid isPermaLink="false">96306@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter, &#60;/p&#62;
&#60;p&#62;i would love to do the same with the Replete Theme. &#60;/p&#62;
&#60;p&#62;I have added the code you have posted to my functions files and it works great for the admin bar at the top of the screen but im still able to see the theme options button on the left hand site admin bar of wordpress. &#60;/p&#62;
&#60;p&#62;Is there a chance to remove or hide that as well ? &#60;/p&#62;
&#60;p&#62;I hope you are able to help me. &#60;/p&#62;
&#60;p&#62;Thanks in advance &#60;/p&#62;
&#60;p&#62;Shorty
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-81935</link>
			<pubDate>Fri, 02 Nov 2012 09:17:09 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">81935@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Great :) &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rinkukadel on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-81798</link>
			<pubDate>Thu, 01 Nov 2012 13:06:20 +0000</pubDate>
			<dc:creator>rinkukadel</dc:creator>
			<guid isPermaLink="false">81798@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Peter that Worked as a Champ.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-81773</link>
			<pubDate>Thu, 01 Nov 2012 07:28:28 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">81773@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, the code above will only hide the option from the frontend admin bar. If you want to hide it on admin pages too add following code to functions.php (at the very bottom):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if( is_admin() )
			{
				add_action(&#38;#39;admin_print_scripts&#38;#39;, &#38;#39;ino_hide_admin_options&#38;#39;);
			}

		function ino_hide_admin_options()
		{
			echo &#38;quot;\n &#38;lt;style type=&#38;#39;text/css&#38;#39;&#38;gt;  \n&#38;quot;;
			echo &#38;quot;#wp-admin-bar-avia, #wp-admin-bar-templates{display: none !important;}&#38;quot;;
			echo &#38;quot;&#38;lt;/style&#38;gt;\n \n &#38;quot;;
		}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>rinkukadel on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-81755</link>
			<pubDate>Thu, 01 Nov 2012 00:12:08 +0000</pubDate>
			<dc:creator>rinkukadel</dc:creator>
			<guid isPermaLink="false">81755@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It has not fixed my problem i still see those Template Options and Theme Options on my Wordpress backend on the Top Admin Bar.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-81689</link>
			<pubDate>Wed, 31 Oct 2012 13:24:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">81689@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; 1) Add following code to css/custom.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#wp-admin-bar-avia, #wp-admin-bar-templates{
display: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) No, Abundance will not be reponsive. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rinkukadel on "WP Admin Menu"</title>
			<link>http://www.kriesi.at/support/topic/wp-admin-menu#post-81637</link>
			<pubDate>Wed, 31 Oct 2012 05:28:44 +0000</pubDate>
			<dc:creator>rinkukadel</dc:creator>
			<guid isPermaLink="false">81637@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Kriesi,&#60;/p&#62;
&#60;p&#62;Great Work! I would like to Hide the Template and Theme Options coming on the top on Wordpress Back-end i.e. on WP Admin Menu.&#60;br /&#62;
Let me also know if you are working on responsive for the Abundace.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
