<?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 kevw - 2W0KAW</title>
	<atom:link href="http://kevw.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevw.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 May 2012 19:37:35 +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 Postie and featured images by kevw</title>
		<link>http://kevw.com/2011/11/postie-and-featured-images/#comment-88</link>
		<dc:creator>kevw</dc:creator>
		<pubDate>Wed, 09 May 2012 19:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=168#comment-88</guid>
		<description>Hi Anita,

You have raised a good point that I haven&#039;t mentioned in my post.  I upgraded Postie one time when an update was released and it does indeed lose any changes that are made.

I&#039;m not aware of any way to keep custom changes to a plugin when upgrading, from what I can gather an upgrade simply replaces the files with new ones, effectively overwriting any changes.

I guess the options are to either make the change again after upgrading or don&#039;t upgrade!</description>
		<content:encoded><![CDATA[<p>Hi Anita,</p>
<p>You have raised a good point that I haven&#8217;t mentioned in my post.  I upgraded Postie one time when an update was released and it does indeed lose any changes that are made.</p>
<p>I&#8217;m not aware of any way to keep custom changes to a plugin when upgrading, from what I can gather an upgrade simply replaces the files with new ones, effectively overwriting any changes.</p>
<p>I guess the options are to either make the change again after upgrading or don&#8217;t upgrade!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Postie and featured images by Anita</title>
		<link>http://kevw.com/2011/11/postie-and-featured-images/#comment-87</link>
		<dc:creator>Anita</dc:creator>
		<pubDate>Wed, 09 May 2012 19:01:30 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=168#comment-87</guid>
		<description>Hi kevw,
this is great! it is exactly what I have been loooking for.

how do you upgrade the postie plugin without destroying the changes in the postie_media_handle_upload function?
thanks, anita</description>
		<content:encoded><![CDATA[<p>Hi kevw,<br />
this is great! it is exactly what I have been loooking for.</p>
<p>how do you upgrade the postie plugin without destroying the changes in the postie_media_handle_upload function?<br />
thanks, anita</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Postie and featured images by kevw</title>
		<link>http://kevw.com/2011/11/postie-and-featured-images/#comment-86</link>
		<dc:creator>kevw</dc:creator>
		<pubDate>Mon, 07 May 2012 20:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=168#comment-86</guid>
		<description>Hi there,

You need to add the line of code to the very end of the postie_media_handle_upload function.

In my file it looks like this:




&lt;code&gt;  // Save the data
  $id = wp_insert_attachment($attachment, $file, $post_id);
  if ( !is_wp_error($id) ) {
    wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );
  }

  update_post_meta($post_id, &#039;_thumbnail_id&#039;, $id);

  return $id;

}&lt;/code&gt;





I hope this helps but if not let me know!</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>You need to add the line of code to the very end of the postie_media_handle_upload function.</p>
<p>In my file it looks like this:</p>
<p><code>  // Save the data<br />
  $id = wp_insert_attachment($attachment, $file, $post_id);<br />
  if ( !is_wp_error($id) ) {<br />
    wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );<br />
  }</p>
<p>  update_post_meta($post_id, '_thumbnail_id', $id);</p>
<p>  return $id;</p>
<p>}</code></p>
<p>I hope this helps but if not let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Postie and featured images by cla</title>
		<link>http://kevw.com/2011/11/postie-and-featured-images/#comment-85</link>
		<dc:creator>cla</dc:creator>
		<pubDate>Wed, 02 May 2012 18:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=168#comment-85</guid>
		<description>Hi, I had the same idea, and I&#039;m trying to set postie. I think that it would be really useful, but I&#039;m new in this word and I cannot find the exact line where I have to add the code. I  put this here:  

$attachments[&quot;cids&quot;][$cid] = array($file,
                count($attachments[&quot;html&quot;]) - 1);
update_post_meta($post_id, &#039;_thumbnail_id&#039;, $id);
          }
        }
        break;
    }		
  }
 return($meta_return);

But in this way, it doesn&#039;t work!

Thank you for this post!</description>
		<content:encoded><![CDATA[<p>Hi, I had the same idea, and I&#8217;m trying to set postie. I think that it would be really useful, but I&#8217;m new in this word and I cannot find the exact line where I have to add the code. I  put this here:  </p>
<p>$attachments["cids"][$cid] = array($file,<br />
                count($attachments["html"]) &#8211; 1);<br />
update_post_meta($post_id, &#8216;_thumbnail_id&#8217;, $id);<br />
          }<br />
        }<br />
        break;<br />
    }<br />
  }<br />
 return($meta_return);</p>
<p>But in this way, it doesn&#8217;t work!</p>
<p>Thank you for this post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DIY Caravan rear view camera by kevw</title>
		<link>http://kevw.com/2012/04/diy-caravan-rear-view-camera/#comment-70</link>
		<dc:creator>kevw</dc:creator>
		<pubDate>Tue, 17 Apr 2012 15:05:22 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=267#comment-70</guid>
		<description>Yea it&#039;s all good but cheap so lets see how long they last.  If it proves reliable I might work out whether it&#039;s worth importing the bits and putting a kit together :)

No rear window in our caravan but a sign to tell tail gaters to back off would be ace!  I need on for the car too!</description>
		<content:encoded><![CDATA[<p>Yea it&#8217;s all good but cheap so lets see how long they last.  If it proves reliable I might work out whether it&#8217;s worth importing the bits and putting a kit together <img src='http://kevw.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>No rear window in our caravan but a sign to tell tail gaters to back off would be ace!  I need on for the car too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Camping in the Forest &#8211; Beddgelert by Andy</title>
		<link>http://kevw.com/2012/03/camping-in-the-forest-beddgelert/#comment-69</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 17 Apr 2012 09:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=240#comment-69</guid>
		<description>You should send Alex to read this.  lol

Sounds like a good trip though.  I always initially hate it when i realise the phone is getting no signal, but then before too long you just accept that the outside world might have been nuked and its best to just get on with enjoying yourself.

Good idea putting the dvd onto usb stick.  I&#039;ve got a load of peppa pig, fifi &amp; squiglet episodes ripped and on the ipod touch but hadnt thought about putting them onto a usb stick for use on the tv upstairs.  In the new house i think the 19&quot; tv in the bedroom will go in the kitchen, so would be ideal to have some stuff loaded onto usb for the kids to watch in there.  Maybe see if i can get &quot;Tangled&quot; ripped onto usb ... Chloe is obsessed with that movie (though to be fair it is awesome).</description>
		<content:encoded><![CDATA[<p>You should send Alex to read this.  lol</p>
<p>Sounds like a good trip though.  I always initially hate it when i realise the phone is getting no signal, but then before too long you just accept that the outside world might have been nuked and its best to just get on with enjoying yourself.</p>
<p>Good idea putting the dvd onto usb stick.  I&#8217;ve got a load of peppa pig, fifi &amp; squiglet episodes ripped and on the ipod touch but hadnt thought about putting them onto a usb stick for use on the tv upstairs.  In the new house i think the 19&#8243; tv in the bedroom will go in the kitchen, so would be ideal to have some stuff loaded onto usb for the kids to watch in there.  Maybe see if i can get &#8220;Tangled&#8221; ripped onto usb &#8230; Chloe is obsessed with that movie (though to be fair it is awesome).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DIY Caravan rear view camera by Andy</title>
		<link>http://kevw.com/2012/04/diy-caravan-rear-view-camera/#comment-67</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 16 Apr 2012 09:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=267#comment-67</guid>
		<description>ps.  That cam is really discrete!  I like it.  And i like that little monitor too.</description>
		<content:encoded><![CDATA[<p>ps.  That cam is really discrete!  I like it.  And i like that little monitor too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DIY Caravan rear view camera by Andy</title>
		<link>http://kevw.com/2012/04/diy-caravan-rear-view-camera/#comment-66</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 16 Apr 2012 09:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=267#comment-66</guid>
		<description>you now need one of those signs for the caravan rear window so if someone is too close you can hurl abuse at them.</description>
		<content:encoded><![CDATA[<p>you now need one of those signs for the caravan rear window so if someone is too close you can hurl abuse at them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Icom 2820 extended transmit by james andrews</title>
		<link>http://kevw.com/2012/03/icom-2820-extended-transmit/#comment-63</link>
		<dc:creator>james andrews</dc:creator>
		<pubDate>Tue, 27 Mar 2012 13:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=261#comment-63</guid>
		<description>I ruined my kit copying this you swine.</description>
		<content:encoded><![CDATA[<p>I ruined my kit copying this you swine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tire Moni Checkair TM-100 by kevw</title>
		<link>http://kevw.com/2012/03/tire-moni-checkair-tm-100/#comment-61</link>
		<dc:creator>kevw</dc:creator>
		<pubDate>Tue, 20 Mar 2012 10:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://kevw.com/?p=252#comment-61</guid>
		<description>Hi Michael, 

Thanks for posting!  That&#039;s what I call customer relations!

The system is great.  I bought it for use with our Touring Caravan, we&#039;ll be embarking on a 900 mile round-trip tour in the summer and I wanted to have the peace of mind that I can see what&#039;s going on with the tyres.  Knowing that the monitor is there to alert me if a tyre starts losing air is enough to put the worrying to rest!

The first thing I did was get the UK PDF manual but once I understood the buttons I&#039;ve found no need for it!

If you have a TireMoni TM-240 lying around I&#039;ll happily do a review for you on our trip! ;)

Kevin</description>
		<content:encoded><![CDATA[<p>Hi Michael, </p>
<p>Thanks for posting!  That&#8217;s what I call customer relations!</p>
<p>The system is great.  I bought it for use with our Touring Caravan, we&#8217;ll be embarking on a 900 mile round-trip tour in the summer and I wanted to have the peace of mind that I can see what&#8217;s going on with the tyres.  Knowing that the monitor is there to alert me if a tyre starts losing air is enough to put the worrying to rest!</p>
<p>The first thing I did was get the UK PDF manual but once I understood the buttons I&#8217;ve found no need for it!</p>
<p>If you have a TireMoni TM-240 lying around I&#8217;ll happily do a review for you on our trip! <img src='http://kevw.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Kevin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

