<?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>WPMU DEV - The WordPress Experts -- Tag: friends - Recent Posts</title>
		<link>http://premium.wpmudev.org/forums/tags/friends</link>
		<description>WPMU DEV - The WordPress Experts -- Tag: friends - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 11:28:16 +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://premium.wpmudev.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://premium.wpmudev.org/forums/rss/tags/friends" rel="self" type="application/rss+xml" />

		<item>
			<title>Dmytro on "Inconsistent GUI between Frinds and Messaging"</title>
			<link>http://premium.wpmudev.org/forums/topic/inconsistent-gui-between-frinds-and-messaging#post-176734</link>
			<pubDate>Tue, 31 Jan 2012 14:18:39 +0000</pubDate>
			<dc:creator>Dmytro</dc:creator>
			<guid isPermaLink="false">176734@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi guys, &#60;/p&#62;
&#60;p&#62;I've had a bit of time on my hands, so did a little patch on the Friends plugin to bring users notification events inline with Messaging plugin. I've tried to keep the patch as small as possible, and to mimic existing coding style of the two plugins, so the changes I've introduced should be quite obvious.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;INSTALL&#60;/strong&#62;:&#60;br /&#62;
1. Install Friends plugin version 1.1.7&#60;br /&#62;
2. Save attached patch into &#60;em&#62;friends.patch&#60;/em&#62; file in your &#60;em&#62;/wp-content/plugins&#60;/em&#62; directory.&#60;br /&#62;
3. Apply patch with &#60;em&#62;cd /wp-content/plugins &#38;amp;&#38;amp; patch -p0 &#38;lt; friends.patch&#60;/em&#62;.&#60;br /&#62;
4. Remove, now redundant, &#60;em&#62;friends.patch&#60;/em&#62; file.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;diff -ur friends/friends.php friends/friends.php
--- friends/friends.php	2011-10-27 01:32:48.000000000 -0700
+++ friends/friends.php	2012-01-30 05:30:09.000000000 -0800
@@ -144,13 +144,22 @@

 function friends_plug_pages() {
 	global $wpdb, $user_ID, $friends_enable_approval;
+    $count_output = &#38;#39;&#38;#39;;

-    add_menu_page( __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), &#38;#39;read&#38;#39;, &#38;#39;friends&#38;#39;, &#38;#39;friends_output&#38;#39; );
+    if ( $friends_enable_approval ) {
+		$tmp_friend_requests_count = $wpdb-&#38;gt;get_var(&#38;quot;SELECT COUNT(*) FROM &#38;quot; . $wpdb-&#38;gt;base_prefix . &#38;quot;friends WHERE friend_user_ID = &#38;#39;&#38;quot; . $user_ID . &#38;quot;&#38;#39; AND friend_approved = &#38;#39;0&#38;#39;&#38;quot;);
+
+        if ($tmp_friend_requests_count &#38;gt; 0) {
+            $count_output = &#38;#39;&#38;amp;nbsp;&#38;lt;span class=&#38;quot;update-plugins&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;updates-count count-&#38;#39; . $tmp_friend_requests_count . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . $tmp_friend_requests_count . &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;;
+        }
+    }
+
+    add_menu_page( __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ) . $count_output, &#38;#39;read&#38;#39;, &#38;#39;friends&#38;#39;, &#38;#39;friends_output&#38;#39; );
+    add_submenu_page( &#38;#39;friends&#38;#39;, __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), &#38;#39;read&#38;#39;, &#38;#39;friends&#38;#39;, &#38;#39;friends_output&#38;#39; );
     add_submenu_page( &#38;#39;friends&#38;#39;, __(&#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __(&#38;#39;Find Friends&#38;#39;, &#38;#39;friends&#38;#39; ), &#38;#39;read&#38;#39;, &#38;#39;find-friends&#38;#39;, &#38;#39;friends_find_output&#38;#39; );

 	if ( $friends_enable_approval ) {
-		$tmp_friend_requests_count = $wpdb-&#38;gt;get_var(&#38;quot;SELECT COUNT(*) FROM &#38;quot; . $wpdb-&#38;gt;base_prefix . &#38;quot;friends WHERE friend_user_ID = &#38;#39;&#38;quot; . $user_ID . &#38;quot;&#38;#39; AND friend_approved = &#38;#39;0&#38;#39;&#38;quot;);
-		add_submenu_page( &#38;#39;friends&#38;#39;, __( &#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __( &#38;#39;Friend Requests&#38;#39;, &#38;#39;friends&#38;#39; ) . &#38;#39; (&#38;#39; . $tmp_friend_requests_count . &#38;#39;)&#38;#39;, &#38;#39;read&#38;#39;, &#38;#39;friend-requests&#38;#39;, &#38;#39;friends_requests_output&#38;#39; );
+		add_submenu_page( &#38;#39;friends&#38;#39;, __( &#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __( &#38;#39;Friend Requests&#38;#39;, &#38;#39;friends&#38;#39; ) . $count_output, &#38;#39;read&#38;#39;, &#38;#39;friend-requests&#38;#39;, &#38;#39;friends_requests_output&#38;#39; );
 	}
 	add_submenu_page( &#38;#39;friends&#38;#39;, __( &#38;#39;Friends&#38;#39;, &#38;#39;friends&#38;#39; ), __( &#38;#39;Notifications&#38;#39;, &#38;#39;friends&#38;#39; ), &#38;#39;read&#38;#39;, &#38;#39;friend-notifications&#38;#39;, &#38;#39;friends_notifications_output&#38;#39; );
 }
@@ -937,4 +946,4 @@
 add_action( &#38;#39;network_admin_notices&#38;#39;, &#38;#39;wdp_un_check&#38;#39;, 5 );
 endif;

-?&#38;gt;
\ No newline at end of file
+?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Phil on "Inconsistent GUI between Frinds and Messaging"</title>
			<link>http://premium.wpmudev.org/forums/topic/inconsistent-gui-between-frinds-and-messaging#post-172363</link>
			<pubDate>Wed, 18 Jan 2012 15:52:04 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">172363@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hiya!&#60;/p&#62;
&#60;p&#62;Hmm yes I see what you mean and that's a good point. I'll put this in as a feature request for the Friends plugin to move inline with Messages.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Phil
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dmytro on "Inconsistent GUI between Frinds and Messaging"</title>
			<link>http://premium.wpmudev.org/forums/topic/inconsistent-gui-between-frinds-and-messaging#post-172344</link>
			<pubDate>Wed, 18 Jan 2012 14:38:45 +0000</pubDate>
			<dc:creator>Dmytro</dc:creator>
			<guid isPermaLink="false">172344@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Guys, just a suggestion but there seem to be a bit of an inconsistency between the way Friends and Messaging plugins notify users about new events. Consider the following screenshots:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://premium.wpmudev.org/wp-content/uploads/2011/04/friends61.jpg&#34; target=&#34;_blank&#34;&#62;http://premium.wpmudev.org/wp-content/uploads/2011/04/friends61.jpg&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://premium.wpmudev.org/wp-content/uploads/2011/04/message61.jpg&#34; target=&#34;_blank&#34;&#62;http://premium.wpmudev.org/wp-content/uploads/2011/04/message61.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Messaging plugin seem to update it's menu item using WP's update classes to notify user about new mail, while Friends simply lists current number of new requests.&#60;/p&#62;
&#60;p&#62;Considering how tightly integrated this two plugins are, wouldn't it be nicer if the Friends plugin updated menu item similarly to Messaging plugin? It would also prevent users from overlooking friends requests when email notification is disabled.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sciamannikoo on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-170525</link>
			<pubDate>Fri, 13 Jan 2012 14:18:23 +0000</pubDate>
			<dc:creator>sciamannikoo</dc:creator>
			<guid isPermaLink="false">170525@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Ok sorry. Perhaps I'm too much new to BP.&#60;/p&#62;
&#60;p&#62;I don't have any Friends or Members directory plugins, as longs as you mean plugins located in the Plugin's page.&#60;/p&#62;
&#60;p&#62;If you're talking about features, of course, I've all these features, but they aren't plugins.&#60;/p&#62;
&#60;p&#62;My currently installed (and network wide) plugins are:&#60;/p&#62;
&#60;p&#62;- Askismet&#60;br /&#62;
- bbPress&#60;br /&#62;
- BuddyPress&#60;br /&#62;
- buddyPress Group Calendar&#60;br /&#62;
- CodeStyling Localization&#60;br /&#62;
- Localize WordPress&#60;br /&#62;
- Signup Code&#60;br /&#62;
- Wordpress Chat&#60;br /&#62;
- WPMU DEV Update Notification&#60;/p&#62;
&#60;p&#62;that's all.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andrey on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-170514</link>
			<pubDate>Fri, 13 Jan 2012 13:40:20 +0000</pubDate>
			<dc:creator>Andrey</dc:creator>
			<guid isPermaLink="false">170514@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I will look what with Friends+Members Directory plugins.&#60;/p&#62;
&#60;p&#62;@sciamannikoo&#60;br /&#62;
can you give me more information about your problem?&#60;br /&#62;
You have only Friends plugin?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sciamannikoo on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-170425</link>
			<pubDate>Fri, 13 Jan 2012 07:56:41 +0000</pubDate>
			<dc:creator>sciamannikoo</dc:creator>
			<guid isPermaLink="false">170425@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Thanks David.&#60;/p&#62;
&#60;p&#62;What if I don't have the Members Directory plugin installed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DavidM on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-170367</link>
			<pubDate>Fri, 13 Jan 2012 00:41:01 +0000</pubDate>
			<dc:creator>DavidM</dc:creator>
			<guid isPermaLink="false">170367@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I've pinged the developer on this one. The issue appears to be the integration between Friends and the Members Directory plugin.&#60;/p&#62;
&#60;p&#62;-David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sciamannikoo on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-170240</link>
			<pubDate>Thu, 12 Jan 2012 19:04:45 +0000</pubDate>
			<dc:creator>sciamannikoo</dc:creator>
			<guid isPermaLink="false">170240@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hey there is a solution to this issue?&#60;/p&#62;
&#60;p&#62;I'm having the very same problem: I can't add friends, as I can't find the button anywhere.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Phil on "Friends for simple wordpress site"</title>
			<link>http://premium.wpmudev.org/forums/topic/friends-for-simple-wordpress-site#post-162746</link>
			<pubDate>Fri, 16 Dec 2011 15:21:18 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">162746@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;If you're looking to have a &#34;friends&#34; and other community features on a single site you might want to look at &#60;a href=&#34;http://buddypress.org&#34;&#62;BuddyPress&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>keeponfalling on "Friends for simple wordpress site"</title>
			<link>http://premium.wpmudev.org/forums/topic/friends-for-simple-wordpress-site#post-162729</link>
			<pubDate>Fri, 16 Dec 2011 14:59:47 +0000</pubDate>
			<dc:creator>keeponfalling</dc:creator>
			<guid isPermaLink="false">162729@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;How can I enable this feature on wordpress 3.3 becasue I don't know?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Phil on "Friends for simple wordpress site"</title>
			<link>http://premium.wpmudev.org/forums/topic/friends-for-simple-wordpress-site#post-162723</link>
			<pubDate>Fri, 16 Dec 2011 14:57:07 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">162723@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hiya!&#60;/p&#62;
&#60;p&#62;It sounds like you're using the plugin on a single install of WordPress. The plugin is only compatible with Multisite so you will need to enable that feature if you wish to use this plugin.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Phil
&#60;/p&#62;</description>
		</item>
		<item>
			<title>keeponfalling on "Friends for simple wordpress site"</title>
			<link>http://premium.wpmudev.org/forums/topic/friends-for-simple-wordpress-site#post-162711</link>
			<pubDate>Fri, 16 Dec 2011 14:03:34 +0000</pubDate>
			<dc:creator>keeponfalling</dc:creator>
			<guid isPermaLink="false">162711@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;I installed friends plugin o a simple wordpress site and I get this error when someone add me as a friend&#60;br /&#62;
Fatal error: Call to undefined function get_blog_option() in /home/silvius/public_html/calculici.com/wp-content/plugins/friends/friends.php on line 663
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Neticpro on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-161435</link>
			<pubDate>Tue, 13 Dec 2011 14:29:26 +0000</pubDate>
			<dc:creator>Neticpro</dc:creator>
			<guid isPermaLink="false">161435@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;No problem about the new account ! ;)&#60;/p&#62;
&#60;p&#62;I see a Friends menu in the back end of the main site (not in the admin view). I'm using WordPress 3.2.1.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DavidM on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-161230</link>
			<pubDate>Mon, 12 Dec 2011 22:06:21 +0000</pubDate>
			<dc:creator>DavidM</dc:creator>
			<guid isPermaLink="false">161230@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi Neticpro and first off, welcome to WPMU DEV!&#60;/p&#62;
&#60;p&#62;Hope you don't mind my creating a user account on your site to test that. I can see there's no Add Friend option, but there's also no option in the member profile area (the back-end) to add a friend either.&#60;/p&#62;
&#60;p&#62;When logged in as Super Admin, do you see the Friends menu items in the back-end menus?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Neticpro on "No add friend button"</title>
			<link>http://premium.wpmudev.org/forums/topic/no-add-friend-button#post-161213</link>
			<pubDate>Mon, 12 Dec 2011 20:59:42 +0000</pubDate>
			<dc:creator>Neticpro</dc:creator>
			<guid isPermaLink="false">161213@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;as you can see here : &#60;a href=&#34;http://artnorac.ecnsx.net/members/&#34; target=&#34;_blank&#34;&#62;http://artnorac.ecnsx.net/members/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I do not have the add friend button...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jmitchel3 on "Recommend Friends"</title>
			<link>http://premium.wpmudev.org/forums/topic/recommend-friends#post-159113</link>
			<pubDate>Tue, 06 Dec 2011 02:36:42 +0000</pubDate>
			<dc:creator>jmitchel3</dc:creator>
			<guid isPermaLink="false">159113@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Actually,&#60;/p&#62;
&#60;p&#62;David, I'm trying to build a self-fueling job site that enables managers and job seekers to meet online by leveraging technology instead of going through resumes. Do you have any recommendations on how to improve overall connections? &#60;/p&#62;
&#60;p&#62;Ideally there would be a way to obviously separate the two types of users by saying &#34;manager&#34; or &#34;(position) seeker&#34;&#60;/p&#62;
&#60;p&#62;Thank you for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jmitchel3 on "Recommend Friends"</title>
			<link>http://premium.wpmudev.org/forums/topic/recommend-friends#post-159112</link>
			<pubDate>Tue, 06 Dec 2011 02:34:34 +0000</pubDate>
			<dc:creator>jmitchel3</dc:creator>
			<guid isPermaLink="false">159112@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Thanks! That looks pretty cool. I'll look into it. I'll let you know how it goes..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DavidM on "Recommend Friends"</title>
			<link>http://premium.wpmudev.org/forums/topic/recommend-friends#post-159111</link>
			<pubDate>Tue, 06 Dec 2011 02:33:10 +0000</pubDate>
			<dc:creator>DavidM</dc:creator>
			<guid isPermaLink="false">159111@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi jmitchel3 and first off, welcome to WPMU DEV!&#60;/p&#62;
&#60;p&#62;Thanks for your suggestion! I think the following BuddyPress plugin may just cover that for ya though!&#60;br /&#62;
&#60;a href=&#34;http://buddydev.com/plugins/buddypress-friends-suggest/&#34; target=&#34;_blank&#34;&#62;http://buddydev.com/plugins/buddypress-friends-suggest/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If that doesn't quite cover it, I'm sure we can go through that and gauge community support here in this thread! I'll move this over to the feedback and feature suggestion thread for that matter.&#60;/p&#62;
&#60;p&#62;-David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jmitchel3 on "Recommend Friends"</title>
			<link>http://premium.wpmudev.org/forums/topic/recommend-friends#post-159104</link>
			<pubDate>Tue, 06 Dec 2011 01:47:00 +0000</pubDate>
			<dc:creator>jmitchel3</dc:creator>
			<guid isPermaLink="false">159104@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Okay, so I haven't been able to find a plugin that recommends friends based on criteria in their profile. This profile doesn't have to be viewable by everyone but the system should recommend people based on their profile. &#60;/p&#62;
&#60;p&#62;Is this possible? If so, I'd LOOOVE to have one. I can explain more later.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;PS I'm new to WPMU DEV so let's see how this goes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Phil on "Why not use Buddypress?"</title>
			<link>http://premium.wpmudev.org/forums/topic/why-not-use-buddypress#post-148173</link>
			<pubDate>Tue, 01 Nov 2011 09:02:51 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">148173@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hiya Dustin,&#60;/p&#62;
&#60;p&#62;Personal preference :)&#60;/p&#62;
&#60;p&#62;A few key differences are;&#60;br /&#62;
 - BuddyPress is 'heavier'&#60;br /&#62;
 - Extra themeing isn't required for Friends, Community, Forums and Messaging&#60;br /&#62;
 - Other plugins are more likely to be compatible with Friends, Community, Forums and Messaging&#60;br /&#62;
 - BuddyPress is more integrated&#60;br /&#62;
 - BP uses bbPress for forums, which are more feature rich than our basic offering.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Phil
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dustin on "Why not use Buddypress?"</title>
			<link>http://premium.wpmudev.org/forums/topic/why-not-use-buddypress#post-148114</link>
			<pubDate>Tue, 01 Nov 2011 01:45:11 +0000</pubDate>
			<dc:creator>dustin</dc:creator>
			<guid isPermaLink="false">148114@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;Does anyone have any advice pertaining to the pros and cons of using Buddypress versus using the Friends, Community, Forums and Messaging plugins? &#60;/p&#62;
&#60;p&#62;Why do some people not want to use Buddypress? &#60;/p&#62;
&#60;p&#62;Dustin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andrey on "Cant message other users through Friend admin panel!"</title>
			<link>http://premium.wpmudev.org/forums/topic/cant-message-other-users-through-friend-admin-panel#post-146513</link>
			<pubDate>Wed, 26 Oct 2011 22:42:49 +0000</pubDate>
			<dc:creator>Andrey</dc:creator>
			<guid isPermaLink="false">146513@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi @msmith11,&#60;/p&#62;
&#60;p&#62;I fixed it.&#60;br /&#62;
Please update the plugin.&#60;/p&#62;
&#60;p&#62;Sorry, for the delay.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PurpleTye on "Cant message other users through Friend admin panel!"</title>
			<link>http://premium.wpmudev.org/forums/topic/cant-message-other-users-through-friend-admin-panel#post-146301</link>
			<pubDate>Wed, 26 Oct 2011 13:10:17 +0000</pubDate>
			<dc:creator>PurpleTye</dc:creator>
			<guid isPermaLink="false">146301@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Thanks for the update masonjames!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>masonjames on "Cant message other users through Friend admin panel!"</title>
			<link>http://premium.wpmudev.org/forums/topic/cant-message-other-users-through-friend-admin-panel#post-146040</link>
			<pubDate>Tue, 25 Oct 2011 22:03:12 +0000</pubDate>
			<dc:creator>masonjames</dc:creator>
			<guid isPermaLink="false">146040@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hiya, just a quick update to let ya know we haven't forotten this one and are still looking into it.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andrey on "Cant message other users through Friend admin panel!"</title>
			<link>http://premium.wpmudev.org/forums/topic/cant-message-other-users-through-friend-admin-panel#post-144201</link>
			<pubDate>Thu, 20 Oct 2011 20:16:58 +0000</pubDate>
			<dc:creator>Andrey</dc:creator>
			<guid isPermaLink="false">144201@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hello msmith11,&#60;/p&#62;
&#60;p&#62;I will look it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DavidM on "Cant message other users through Friend admin panel!"</title>
			<link>http://premium.wpmudev.org/forums/topic/cant-message-other-users-through-friend-admin-panel#post-144109</link>
			<pubDate>Thu, 20 Oct 2011 17:47:50 +0000</pubDate>
			<dc:creator>DavidM</dc:creator>
			<guid isPermaLink="false">144109@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi msmith11 and first off, welcome to WPMU DEV!&#60;/p&#62;
&#60;p&#62;I just gave it a test run in a Multisite and noticed when attempting to send a friend a message it goes to mysite.com/wp-admin/inbox.php?page=new&#38;amp;action=process, which ends up redirecting to the front-end.&#60;/p&#62;
&#60;p&#62;I'll alert the lead developer on this one.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PurpleTye on "Cant message other users through Friend admin panel!"</title>
			<link>http://premium.wpmudev.org/forums/topic/cant-message-other-users-through-friend-admin-panel#post-144064</link>
			<pubDate>Thu, 20 Oct 2011 15:41:32 +0000</pubDate>
			<dc:creator>PurpleTye</dc:creator>
			<guid isPermaLink="false">144064@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;I loaded the Friends &#38;amp; Messaging Plugins, and everything is functioning except when I go to the friends panel and try to send a message through actions. However I can send a message just find through the messaging panel. So what can I do to fix it? All help would be appreciated :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DavidM on "Invite menu"</title>
			<link>http://premium.wpmudev.org/forums/topic/invite-menu#post-141565</link>
			<pubDate>Fri, 14 Oct 2011 09:30:08 +0000</pubDate>
			<dc:creator>DavidM</dc:creator>
			<guid isPermaLink="false">141565@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hiya AntKat,&#60;/p&#62;
&#60;p&#62;Hopefully that sorted it for ya! Haven't heard back from you on this, so assuming so. Just let us know if not and we'll have a look!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James on "Friends Widget on Multisite"</title>
			<link>http://premium.wpmudev.org/forums/topic/friends-widget-on-multisite#post-139887</link>
			<pubDate>Tue, 11 Oct 2011 04:41:49 +0000</pubDate>
			<dc:creator>James</dc:creator>
			<guid isPermaLink="false">139887@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;Hi AntKat,&#60;/p&#62;
&#60;p&#62;As we haven't heard back from you we're going to assume the problem was sorted out and mark this thread as resolved.&#60;/p&#62;
&#60;p&#62;If it wasn't resolved, or you have any more questions related to this thread please feel free to post them below and tick the 'Mark as Not Resolved (re-open)' box below the post area (or else we'll miss it!)&#60;/p&#62;
&#60;p&#62;Otherwise, thanks for using the forums, and, as always, for being a member of WPMU DEV, it's a pleasure to help you out and we look forward to being of assistance in the future.&#60;/p&#62;
&#60;p&#62;Cheers, James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Phil on "Invite menu"</title>
			<link>http://premium.wpmudev.org/forums/topic/invite-menu#post-135167</link>
			<pubDate>Mon, 26 Sep 2011 13:43:19 +0000</pubDate>
			<dc:creator>Phil</dc:creator>
			<guid isPermaLink="false">135167@http://premium.wpmudev.org/forums/</guid>
			<description>&#60;p&#62;The only menu Invites creates is in the Users area of the dashboard.&#60;/p&#62;
&#60;p&#62;Phil
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

