<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Philip John</title>
	<atom:link href="http://philipjohn.journallocal.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://philipjohn.journallocal.co.uk</link>
	<description>Best served chilled.</description>
	<lastBuildDate>Wed, 15 Feb 2012 11:16:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on The Walled Garden by Scott Daris</title>
		<link>http://philipjohn.journallocal.co.uk/2011/11/14/the-walled-garden/#comment-2032</link>
		<dc:creator>Scott Daris</dc:creator>
		<pubDate>Wed, 15 Feb 2012 11:16:21 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.journallocal.co.uk/?p=1124#comment-2032</guid>
		<description>Hello from the US!  I really like how you outlined your process. I&#039;m thinking about developing WP sites on a local basis out here in western Massachusetts, New England, now that I&#039;ve moved out of New York City. I&#039;ll bookmark your blog. Cheers!</description>
		<content:encoded><![CDATA[<p>Hello from the US!  I really like how you outlined your process. I&#8217;m thinking about developing WP sites on a local basis out here in western Massachusetts, New England, now that I&#8217;ve moved out of New York City. I&#8217;ll bookmark your blog. Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hiding bbPress topics from logged out users by Philip John</title>
		<link>http://philipjohn.journallocal.co.uk/2011/11/14/hiding-bbpress-topics-from-logged-out-users/#comment-1888</link>
		<dc:creator>Philip John</dc:creator>
		<pubDate>Mon, 21 Nov 2011 09:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.journallocal.co.uk/?p=1207#comment-1888</guid>
		<description>Awesome, didn&#039;t realise it&#039;d be that easy - thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Awesome, didn&#8217;t realise it&#8217;d be that easy &#8211; thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hiding bbPress topics from logged out users by Spence</title>
		<link>http://philipjohn.journallocal.co.uk/2011/11/14/hiding-bbpress-topics-from-logged-out-users/#comment-1886</link>
		<dc:creator>Spence</dc:creator>
		<pubDate>Mon, 21 Nov 2011 03:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.journallocal.co.uk/?p=1207#comment-1886</guid>
		<description>Pardon... I meant to type &quot;Hi Philip&quot; rather than &quot;John&quot; ... ;-)</description>
		<content:encoded><![CDATA[<p>Pardon&#8230; I meant to type &#8220;Hi Philip&#8221; rather than &#8220;John&#8221; &#8230; <img src='http://philipjohn.journallocal.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hiding bbPress topics from logged out users by Spence</title>
		<link>http://philipjohn.journallocal.co.uk/2011/11/14/hiding-bbpress-topics-from-logged-out-users/#comment-1885</link>
		<dc:creator>Spence</dc:creator>
		<pubDate>Mon, 21 Nov 2011 03:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.journallocal.co.uk/?p=1207#comment-1885</guid>
		<description>Hi John!

Awesome workaround!

We&#039;ve taken it a little further and added a warning dialogue box to let users know that they have to log-in to see the forums. Otherwise the default message may be slightly misleading.

(Hope this formats well in comments)

Cheers!
Spence



/*-----------------------------------------------------------------------------------*/
/* Hide bbPress topics from viewers not logged-in									           */
/*-----------------------------------------------------------------------------------*/


function lab_logged_in_bbptopics($have_posts){
    if (!is_user_logged_in()){
        $log_in = &#039;Sorry, you must be logged-in to view the forums!&#039;;
        $have_posts = null;

    }
   		echo $log_in;
		return $have_posts;
}
add_filter(&#039;bbp_has_topics&#039;, &#039;lab_logged_in_bbptopics&#039;);
add_filter(&#039;bbp_has_forums&#039;, &#039;lab_logged_in_bbptopics&#039;);
add_filter(&#039;bbp_has_replies&#039;, &#039;lab_logged_in_bbptopics&#039;);</description>
		<content:encoded><![CDATA[<p>Hi John!</p>
<p>Awesome workaround!</p>
<p>We&#8217;ve taken it a little further and added a warning dialogue box to let users know that they have to log-in to see the forums. Otherwise the default message may be slightly misleading.</p>
<p>(Hope this formats well in comments)</p>
<p>Cheers!<br />
Spence</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;*/<br />
/* Hide bbPress topics from viewers not logged-in									           */<br />
/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;*/</p>
<p>function lab_logged_in_bbptopics($have_posts){<br />
    if (!is_user_logged_in()){<br />
        $log_in = &#8216;Sorry, you must be logged-in to view the forums!&#8217;;<br />
        $have_posts = null;</p>
<p>    }<br />
   		echo $log_in;<br />
		return $have_posts;<br />
}<br />
add_filter(&#8216;bbp_has_topics&#8217;, &#8216;lab_logged_in_bbptopics&#8217;);<br />
add_filter(&#8216;bbp_has_forums&#8217;, &#8216;lab_logged_in_bbptopics&#8217;);<br />
add_filter(&#8216;bbp_has_replies&#8217;, &#8216;lab_logged_in_bbptopics&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add a shortlink to the end of your WordPress posts by Philip John</title>
		<link>http://philipjohn.journallocal.co.uk/2011/04/22/add-a-shortlink-to-the-end-of-your-wordpress-posts/#comment-1869</link>
		<dc:creator>Philip John</dc:creator>
		<pubDate>Mon, 14 Nov 2011 11:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.co.uk/?p=1058#comment-1869</guid>
		<description>Thanks Andy. I&#039;ve got the notification of your WP.org post so I&#039;ll look at this later today and get back to you there :)</description>
		<content:encoded><![CDATA[<p>Thanks Andy. I&#8217;ve got the notification of your WP.org post so I&#8217;ll look at this later today and get back to you there <img src='http://philipjohn.journallocal.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add a shortlink to the end of your WordPress posts by Andy Mabbett</title>
		<link>http://philipjohn.journallocal.co.uk/2011/04/22/add-a-shortlink-to-the-end-of-your-wordpress-posts/#comment-1868</link>
		<dc:creator>Andy Mabbett</dc:creator>
		<pubDate>Sun, 13 Nov 2011 21:16:07 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.co.uk/?p=1058#comment-1868</guid>
		<description>Still inserting a duplicate of the post’s title at top of content :-(</description>
		<content:encoded><![CDATA[<p>Still inserting a duplicate of the post’s title at top of content <img src='http://philipjohn.journallocal.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add a shortlink to the end of your WordPress posts by Philip John</title>
		<link>http://philipjohn.journallocal.co.uk/2011/04/22/add-a-shortlink-to-the-end-of-your-wordpress-posts/#comment-1867</link>
		<dc:creator>Philip John</dc:creator>
		<pubDate>Sun, 13 Nov 2011 18:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.co.uk/?p=1058#comment-1867</guid>
		<description>I&#039;ve just put this on WordPress.org at last: http://wordpress.org/extend/plugins/add-shortlink-to-posts/

A couple of improvements. If you have any issues please post a new thread at http://wordpress.org/tags/add-shortlink-to-posts?forum_id=10 so I can best deal with it.

Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just put this on WordPress.org at last: <a href="http://wordpress.org/extend/plugins/add-shortlink-to-posts/">http://wordpress.org/extend/plugins/add-shortlink-to-posts/</a></p>
<p>A couple of improvements. If you have any issues please post a new thread at <a href="http://wordpress.org/tags/add-shortlink-to-posts?forum_id=10">http://wordpress.org/tags/add-shortlink-to-posts?forum_id=10</a> so I can best deal with it.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northcliffe&#8217;s Local People: It&#8217;s not working, let&#8217;s shift the risk by Webby</title>
		<link>http://philipjohn.journallocal.co.uk/2011/10/10/northcliffes-local-people-its-not-working-lets-shift-the-risk/#comment-1818</link>
		<dc:creator>Webby</dc:creator>
		<pubDate>Wed, 26 Oct 2011 15:47:54 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.co.uk/?p=1116#comment-1818</guid>
		<description>I worked on 4 localpeople sites in Devon last year, charged with generating revenue.  It was a disaster and I resigned after four months.  The Northcliffe culture towards it&#039;s sales staff was diabolical to say the least.

That said, some of the sites were highly profitable - I can think of two sites in particular that were generating well in excess of £5k per month.  In an established localpeople town, I dare say that £7k with Northcliffe support probably won&#039;t be the worst investment out there. 

On the flip side, some of the sites were eye-wateringly loss-making and I won&#039;t lose any sleep from their demise.</description>
		<content:encoded><![CDATA[<p>I worked on 4 localpeople sites in Devon last year, charged with generating revenue.  It was a disaster and I resigned after four months.  The Northcliffe culture towards it&#8217;s sales staff was diabolical to say the least.</p>
<p>That said, some of the sites were highly profitable &#8211; I can think of two sites in particular that were generating well in excess of £5k per month.  In an established localpeople town, I dare say that £7k with Northcliffe support probably won&#8217;t be the worst investment out there. </p>
<p>On the flip side, some of the sites were eye-wateringly loss-making and I won&#8217;t lose any sleep from their demise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northcliffe&#8217;s Local People: It&#8217;s not working, let&#8217;s shift the risk by Tom</title>
		<link>http://philipjohn.journallocal.co.uk/2011/10/10/northcliffes-local-people-its-not-working-lets-shift-the-risk/#comment-1811</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 22 Oct 2011 18:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.co.uk/?p=1116#comment-1811</guid>
		<description>I&#039;ve been thinking about local networking a lot recently and I&#039;ve had a look at my own &#039;local-people site&#039; .... well it&#039;s too faceless and sterile to be a community site and I know for a fact that very few people in my area use it. It sounds like a cliche but I believe local networks should be locally managed, a return to the &#039;garden gate referral&#039; where information passes via word of mouth (in an internet sort of way)... local people&#039;s model doesn&#039;t address this and non-techie small businesses could well get sucked in for little return. I think their original idea was good and the sites look nice and function well, but ultimately I doubt they are trusted any more than the phone directory is for endorsement of local services.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been thinking about local networking a lot recently and I&#8217;ve had a look at my own &#8216;local-people site&#8217; &#8230;. well it&#8217;s too faceless and sterile to be a community site and I know for a fact that very few people in my area use it. It sounds like a cliche but I believe local networks should be locally managed, a return to the &#8216;garden gate referral&#8217; where information passes via word of mouth (in an internet sort of way)&#8230; local people&#8217;s model doesn&#8217;t address this and non-techie small businesses could well get sucked in for little return. I think their original idea was good and the sites look nice and function well, but ultimately I doubt they are trusted any more than the phone directory is for endorsement of local services.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Northcliffe&#8217;s Local People: It&#8217;s not working, let&#8217;s shift the risk by Nigel Barlow</title>
		<link>http://philipjohn.journallocal.co.uk/2011/10/10/northcliffes-local-people-its-not-working-lets-shift-the-risk/#comment-1792</link>
		<dc:creator>Nigel Barlow</dc:creator>
		<pubDate>Mon, 10 Oct 2011 11:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://philipjohn.co.uk/?p=1116#comment-1792</guid>
		<description>I have had a quick look at this as you can well imagine.

If it provides some of the business model and support so that people like us can produce good content then it might work but then you have to look at the figures.

You are going to need to justify a fairly decent return on seven grand.

Their literature talks about 5k a month income but as we both know,that is surely pie in the sky for small sites.

Nevertheless I take my hat off to them for trying and maybe it could be the model that we are all waiting for</description>
		<content:encoded><![CDATA[<p>I have had a quick look at this as you can well imagine.</p>
<p>If it provides some of the business model and support so that people like us can produce good content then it might work but then you have to look at the figures.</p>
<p>You are going to need to justify a fairly decent return on seven grand.</p>
<p>Their literature talks about 5k a month income but as we both know,that is surely pie in the sky for small sites.</p>
<p>Nevertheless I take my hat off to them for trying and maybe it could be the model that we are all waiting for</p>
]]></content:encoded>
	</item>
</channel>
</rss>

