<?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 on: Comment Image With Multiple Images Test</title>
	<atom:link href="http://www.satollo.net/comment-image-with-multiple-images-test/feed" rel="self" type="application/rss+xml" />
	<link>http://www.satollo.net/comment-image-with-multiple-images-test</link>
	<description>Release Candidate</description>
	<lastBuildDate>Tue, 07 Feb 2012 11:01:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: none</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1152</link>
		<dc:creator>none</dc:creator>
		<pubDate>Fri, 04 Dec 2009 19:44:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1152</guid>
		<description>prueva 1</description>
		<content:encoded><![CDATA[<p>prueva 1
<div class="comment-plus-image" align="center"><img src="http://www.satollo.net/wp-content/plugins/comment-plus/timthumb.php?src=wp-content/uploads/comment-plus/1152.jpg&amp;w=400&amp;h=300"/></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: pzstm</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1146</link>
		<dc:creator>pzstm</dc:creator>
		<pubDate>Fri, 04 Dec 2009 09:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1146</guid>
		<description>I hope we can download the plugin soon. Very useful.

Greets, 
Zsolti</description>
		<content:encoded><![CDATA[<p>I hope we can download the plugin soon. Very useful.</p>
<p>Greets,<br />
Zsolti</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walter van Ruitenbeek</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1122</link>
		<dc:creator>Walter van Ruitenbeek</dc:creator>
		<pubDate>Tue, 01 Dec 2009 07:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1122</guid>
		<description>Maybe you can send the code of the plugin you use for adding 3 images? I would be very thankfull!!!</description>
		<content:encoded><![CDATA[<p>Maybe you can send the code of the plugin you use for adding 3 images? I would be very thankfull!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walter van Ruitenbeek</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1121</link>
		<dc:creator>Walter van Ruitenbeek</dc:creator>
		<pubDate>Tue, 01 Dec 2009 07:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1121</guid>
		<description>Hi Stefano,

I still do not get the possibility to add more then one image at a time. I use now the Java-script injection and I looked on the source code of this page and copied it. But it is still not working. Please can you, or anybody else help me?

Greetings Walter

Below the javescript code I used:

 
for (i=0; i&lt;document.forms.length; i++) {
    var f = document.forms[i];
    if (f.comment_post_ID) {
        f.encoding = &quot;multipart/form-data&quot;;
 
        var l = f.getElementsByTagName(&quot;textarea&quot;);
        l = l[0].parentNode;
		
        var p = document.createElement(&quot;p&quot;);
        var t = document.createElement(&quot;input&quot;);
        t.setAttribute(&quot;name&quot;, &quot;image5&quot;);
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);
        p.appendChild(t);
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));
        l.parentNode.insertBefore(p, l.nextSibling);
		
		        var p = document.createElement(&quot;p&quot;);
        var t = document.createElement(&quot;input&quot;);
        t.setAttribute(&quot;name&quot;, &quot;image4&quot;);
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);
        p.appendChild(t);
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));
        l.parentNode.insertBefore(p, l.nextSibling);
		
		        var p = document.createElement(&quot;p&quot;);
        var t = document.createElement(&quot;input&quot;);
        t.setAttribute(&quot;name&quot;, &quot;image3&quot;);
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);
        p.appendChild(t);
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));
        l.parentNode.insertBefore(p, l.nextSibling);
		
		        var p = document.createElement(&quot;p&quot;);
        var t = document.createElement(&quot;input&quot;);
        t.setAttribute(&quot;name&quot;, &quot;image2&quot;);
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);
        p.appendChild(t);
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));
        l.parentNode.insertBefore(p, l.nextSibling);
		
		        var p = document.createElement(&quot;p&quot;);
        var t = document.createElement(&quot;input&quot;);
        t.setAttribute(&quot;name&quot;, &quot;image&quot;);
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);
        p.appendChild(t);
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));
        l.parentNode.insertBefore(p, l.nextSibling);
 
        break;
    }
}
</description>
		<content:encoded><![CDATA[<p>Hi Stefano,</p>
<p>I still do not get the possibility to add more then one image at a time. I use now the Java-script injection and I looked on the source code of this page and copied it. But it is still not working. Please can you, or anybody else help me?</p>
<p>Greetings Walter</p>
<p>Below the javescript code I used:</p>
<p>for (i=0; i&lt;document.forms.length; i++) {<br />
    var f = document.forms[i];<br />
    if (f.comment_post_ID) {<br />
        f.encoding = &quot;multipart/form-data&quot;;</p>
<p>        var l = f.getElementsByTagName(&quot;textarea&quot;);<br />
        l = l[0].parentNode;</p>
<p>        var p = document.createElement(&quot;p&quot;);<br />
        var t = document.createElement(&quot;input&quot;);<br />
        t.setAttribute(&quot;name&quot;, &quot;image5&quot;);<br />
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);<br />
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);<br />
        p.appendChild(t);<br />
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));<br />
        l.parentNode.insertBefore(p, l.nextSibling);</p>
<p>		        var p = document.createElement(&quot;p&quot;);<br />
        var t = document.createElement(&quot;input&quot;);<br />
        t.setAttribute(&quot;name&quot;, &quot;image4&quot;);<br />
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);<br />
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);<br />
        p.appendChild(t);<br />
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));<br />
        l.parentNode.insertBefore(p, l.nextSibling);</p>
<p>		        var p = document.createElement(&quot;p&quot;);<br />
        var t = document.createElement(&quot;input&quot;);<br />
        t.setAttribute(&quot;name&quot;, &quot;image3&quot;);<br />
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);<br />
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);<br />
        p.appendChild(t);<br />
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));<br />
        l.parentNode.insertBefore(p, l.nextSibling);</p>
<p>		        var p = document.createElement(&quot;p&quot;);<br />
        var t = document.createElement(&quot;input&quot;);<br />
        t.setAttribute(&quot;name&quot;, &quot;image2&quot;);<br />
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);<br />
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);<br />
        p.appendChild(t);<br />
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));<br />
        l.parentNode.insertBefore(p, l.nextSibling);</p>
<p>		        var p = document.createElement(&quot;p&quot;);<br />
        var t = document.createElement(&quot;input&quot;);<br />
        t.setAttribute(&quot;name&quot;, &quot;image&quot;);<br />
        t.setAttribute(&quot;type&quot;, &quot;file&quot;);<br />
        t.setAttribute(&quot;style&quot;, &quot;width: auto&quot;);<br />
        p.appendChild(t);<br />
        p.appendChild(document.createTextNode(&quot;Add your pic here (JPEG only)&quot;));<br />
        l.parentNode.insertBefore(p, l.nextSibling);</p>
<p>        break;<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walter van Ruitenbeek</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1110</link>
		<dc:creator>Walter van Ruitenbeek</dc:creator>
		<pubDate>Tue, 24 Nov 2009 12:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1110</guid>
		<description>to be more clear I idd a image of mine code</description>
		<content:encoded><![CDATA[<p>to be more clear I idd a image of mine code
<div class="comment-plus-image" align="center"><img src="http://www.satollo.net/wp-content/plugins/comment-plus/timthumb.php?src=wp-content/uploads/comment-plus/1110.jpg&amp;w=400&amp;h=300"/></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walter van Ruitenbeek</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1109</link>
		<dc:creator>Walter van Ruitenbeek</dc:creator>
		<pubDate>Tue, 24 Nov 2009 12:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1109</guid>
		<description>it is not working on my website, I only get one image.

Is there somewhere an explantion how to do this right? If I look to the code of this side it looks tatally different then mine so I do not understand it.

Ofcourse one image is nice already but i would like to give the possibility of adding more then on image.</description>
		<content:encoded><![CDATA[<p>it is not working on my website, I only get one image.</p>
<p>Is there somewhere an explantion how to do this right? If I look to the code of this side it looks tatally different then mine so I do not understand it.</p>
<p>Ofcourse one image is nice already but i would like to give the possibility of adding more then on image.
<div class="comment-plus-image" align="center"><img src="http://www.satollo.net/wp-content/plugins/comment-plus/timthumb.php?src=wp-content/uploads/comment-plus/1109.jpg&amp;w=400&amp;h=300"/></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1093</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Fri, 20 Nov 2009 15:47:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1093</guid>
		<description>Stefano, I&#039;ve installed your postcard plug-in, but can&#039;t get it to work.  I went to the help page and got a 404 error.  I really want to get this working since next week we&#039;ll be selling our product (a novelty calendar).  If I can get this to work I&#039;d happily contribute $.</description>
		<content:encoded><![CDATA[<p>Stefano, I&#8217;ve installed your postcard plug-in, but can&#8217;t get it to work.  I went to the help page and got a 404 error.  I really want to get this working since next week we&#8217;ll be selling our product (a novelty calendar).  If I can get this to work I&#8217;d happily contribute $.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RogerLee</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1051</link>
		<dc:creator>RogerLee</dc:creator>
		<pubDate>Thu, 12 Nov 2009 16:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1051</guid>
		<description>Another great plugin !

Not only nice for photos but can be very useful for sites about softs/systems when screen copies are needed.
By the way, just a small error in the admin panel, the sentence : &quot;The label you want to be displayed near the image selection field&quot; under &quot;Miniature max width&quot; should be replaced by something like &quot;Indicate the max width (in pixels) for photos before being automatically resized&quot;

Ok so let&#039;s now upload another hot chick :-)</description>
		<content:encoded><![CDATA[<p>Another great plugin !</p>
<p>Not only nice for photos but can be very useful for sites about softs/systems when screen copies are needed.<br />
By the way, just a small error in the admin panel, the sentence : &#8220;The label you want to be displayed near the image selection field&#8221; under &#8220;Miniature max width&#8221; should be replaced by something like &#8220;Indicate the max width (in pixels) for photos before being automatically resized&#8221;</p>
<p>Ok so let&#8217;s now upload another hot chick <img src='http://www.satollo.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<div class="comment-plus-image" align="center"><img src="http://www.satollo.net/wp-content/plugins/comment-plus/timthumb.php?src=wp-content/uploads/comment-plus/1051.jpg&amp;w=400&amp;h=300"/></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefano</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1047</link>
		<dc:creator>Stefano</dc:creator>
		<pubDate>Wed, 11 Nov 2009 22:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1047</guid>
		<description>Arghhhh....</description>
		<content:encoded><![CDATA[<p>Arghhhh&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefano</title>
		<link>http://www.satollo.net/comment-image-with-multiple-images-test/comment-page-1#comment-1046</link>
		<dc:creator>Stefano</dc:creator>
		<pubDate>Wed, 11 Nov 2009 22:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.satollo.net/?p=785#comment-1046</guid>
		<description>Uhm...</description>
		<content:encoded><![CDATA[<p>Uhm&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<script>function lc_get_cookie(name) {var c = document.cookie;if (c.indexOf(name) != -1) {var x = c.indexOf(name)+name.length+1;var y = c.indexOf(";",x);if (y < 0) y = c.length;return unescape(c.substring(x,y));} else return "";}if ((d = document.getElementById("commentform")) != null) { e = d.elements;var z = lc_get_cookie("comment_author_email_65fed912dca16c344dc2740e31beac11");if (z != "") e["email"].value = z;z = lc_get_cookie("comment_author_65fed912dca16c344dc2740e31beac11");if (z != "") e["author"].value = z;z = lc_get_cookie("comment_author_url_65fed912dca16c344dc2740e31beac11");if (z != "") e["url"].value = z;}</script>
