<?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: Testimonials Manager for WordPress</title>
	<atom:link href="http://www.profitplugs.com/testimonials-manager-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.profitplugs.com/testimonials-manager-wordpress/</link>
	<description>WordPress Plugins for Internet Marketing</description>
	<lastBuildDate>Thu, 11 Mar 2010 19:37:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ken</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5524</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Thu, 11 Mar 2010 16:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5524</guid>
		<description>background color of widget wont change.  stays white no matter what color i input</description>
		<content:encoded><![CDATA[<p>background color of widget wont change.  stays white no matter what color i input</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art Shim</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5523</link>
		<dc:creator>Art Shim</dc:creator>
		<pubDate>Thu, 11 Mar 2010 14:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5523</guid>
		<description>Umm... HTML code doesn&#039;t display properly. I believe you know the code for random value.

Thanks!</description>
		<content:encoded><![CDATA[<p>Umm&#8230; HTML code doesn&#8217;t display properly. I believe you know the code for random value.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art Shim</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5522</link>
		<dc:creator>Art Shim</dc:creator>
		<pubDate>Thu, 11 Mar 2010 14:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5522</guid>
		<description>Hi there,

I think I found some issues on ramdomize testimonials. I found the code for shuffling on index.php

&lt;blockquote&gt;
    switch ($data[&#039;dorder&#039;]) {
        case &#039;random&#039;:
            shuffle($data[&#039;data&#039;]);
            ;
            break;
        case &#039;desc&#039;:
            $data[&#039;data&#039;] = array_reverse($data[&#039;data&#039;]);
            ksort($data[&#039;data&#039;]);
            ;
            break;
        default: ;
    }
&lt;/blockquote&gt;

but the testimonial_manager.php doesn&#039;t have the code for setup the value random. I made some changes on line 734~ on testimonial_manager.php 

&lt;blockquote&gt;
734                     
735                         Ascending
736                         Descending
737                         Randomize
738                     
&lt;/blockquote&gt;
&lt;b&gt;line 737 added&lt;/b&gt;

Does it make sense? Also the ascending option doesn&#039;t have the code for displaying on index.php.

I hope this comment help.

PS. Also, on line 479 loop. The variable $av doesn&#039;t clear on every loop. I found the admin page of testimonial, the blank avatar displays the previous one. I just put clearing code on it.

&lt;blockquote&gt;
476                             $url = &#039;http://&#039; . $url;
477                         }
478                         $av = &quot;&quot;;
479                         if ($data[&#039;data&#039;][$x][&#039;avatar&#039;]) {
480                             if ($data[&#039;data&#039;][$x][&#039;avatar&#039;] == &quot;gravatar&quot;) {
481                                 $av = get_avatar($data[&#039;data&#039;][$x][&#039;email&#039;], 48);
482                             } else {
483                                 $av = &#039;&#039;;
484                             }
485                         }
&lt;/blockquote&gt;
&lt;b&gt;line 478 added&lt;/b&gt;

GREAT PLUG-IN!</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I think I found some issues on ramdomize testimonials. I found the code for shuffling on index.php</p>
<blockquote><p>
    switch ($data['dorder']) {<br />
        case &#8216;random&#8217;:<br />
            shuffle($data['data']);<br />
            ;<br />
            break;<br />
        case &#8216;desc&#8217;:<br />
            $data['data'] = array_reverse($data['data']);<br />
            ksort($data['data']);<br />
            ;<br />
            break;<br />
        default: ;<br />
    }
</p></blockquote>
<p>but the testimonial_manager.php doesn&#8217;t have the code for setup the value random. I made some changes on line 734~ on testimonial_manager.php </p>
<blockquote><p>
734<br />
735                         Ascending<br />
736                         Descending<br />
737                         Randomize<br />
738
</p></blockquote>
<p><b>line 737 added</b></p>
<p>Does it make sense? Also the ascending option doesn&#8217;t have the code for displaying on index.php.</p>
<p>I hope this comment help.</p>
<p>PS. Also, on line 479 loop. The variable $av doesn&#8217;t clear on every loop. I found the admin page of testimonial, the blank avatar displays the previous one. I just put clearing code on it.</p>
<blockquote><p>
476                             $url = &#8216;http://&#8217; . $url;<br />
477                         }<br />
478                         $av = &#8220;&#8221;;<br />
479                         if ($data['data'][$x]['avatar']) {<br />
480                             if ($data['data'][$x]['avatar'] == &#8220;gravatar&#8221;) {<br />
481                                 $av = get_avatar($data['data'][$x]['email'], 48);<br />
482                             } else {<br />
483                                 $av = &#8221;;<br />
484                             }<br />
485                         }
</p></blockquote>
<p><b>line 478 added</b></p>
<p>GREAT PLUG-IN!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: claudio</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5521</link>
		<dc:creator>claudio</dc:creator>
		<pubDate>Thu, 11 Mar 2010 13:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5521</guid>
		<description>I&#039;m sorry but doesn&#039;t work the img!
i upload picture but doesn&#039;t work, the image can&#039;t display because the name of the image generate from the plug in is for example:&quot; image-t.jpgimage.jpg&quot; can you help me? please?</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry but doesn&#8217;t work the img!<br />
i upload picture but doesn&#8217;t work, the image can&#8217;t display because the name of the image generate from the plug in is for example:&#8221; image-t.jpgimage.jpg&#8221; can you help me? please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prabu</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5509</link>
		<dc:creator>prabu</dc:creator>
		<pubDate>Wed, 10 Mar 2010 07:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5509</guid>
		<description>Hi ,
i have installed and activated your testimonials plugin. I need one clarification in displaying style.i need the plugin to display the testimonial with images at first ,ten only the testimonials without images should be listed. What shall i do for that any idea please....</description>
		<content:encoded><![CDATA[<p>Hi ,<br />
i have installed and activated your testimonials plugin. I need one clarification in displaying style.i need the plugin to display the testimonial with images at first ,ten only the testimonials without images should be listed. What shall i do for that any idea please&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jt</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5508</link>
		<dc:creator>Jt</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5508</guid>
		<description>OK...wow, well that didn&#039;t take me too long to figure out...just an FYI, in testimonial_manager.php  I saw that the output string was putting an extra filetype attribute so I was looking for your definition of that ($filename) and I removed it, and it worked =) I am happy now. 
Below the // Save the data block
Changed:
 $inputdata[&#039;own_avatar&#039;] = $url.$filename;
to:
 $inputdata[&#039;own_avatar&#039;] = $url;</description>
		<content:encoded><![CDATA[<p>OK&#8230;wow, well that didn&#8217;t take me too long to figure out&#8230;just an FYI, in testimonial_manager.php  I saw that the output string was putting an extra filetype attribute so I was looking for your definition of that ($filename) and I removed it, and it worked =) I am happy now.<br />
Below the // Save the data block<br />
Changed:<br />
 $inputdata['own_avatar'] = $url.$filename;<br />
to:<br />
 $inputdata['own_avatar'] = $url;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gobala Krishnan</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5507</link>
		<dc:creator>Gobala Krishnan</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5507</guid>
		<description>And also perhaps check the permission settings for the wp-content/uploads folder - perhaps change it to &quot;777&quot;</description>
		<content:encoded><![CDATA[<p>And also perhaps check the permission settings for the wp-content/uploads folder &#8211; perhaps change it to &#8220;777&#8243;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gobala Krishnan</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5506</link>
		<dc:creator>Gobala Krishnan</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5506</guid>
		<description>Can you try a filename with no *dot* in it - for example &lt;em&gt;filename.jpg&lt;/em&gt; instead of &lt;em&gt;file.name.jpg&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>Can you try a filename with no *dot* in it &#8211; for example <em>filename.jpg</em> instead of <em>file.name.jpg</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jt</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5505</link>
		<dc:creator>Jt</dc:creator>
		<pubDate>Wed, 10 Mar 2010 05:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5505</guid>
		<description>looking through page src data, the file is looks like &quot;http://sniperdaytrading.com/wp-content/uploads/2010/03/advert-copy2-t.jpgadvert-copy2.jpg&quot; ...so probably something to do with formula to rename file after resizing? Don&#039;t know php at all, but I&#039;m messing with it to see if I can figure it out... =/</description>
		<content:encoded><![CDATA[<p>looking through page src data, the file is looks like &#8220;http://sniperdaytrading.com/wp-content/uploads/2010/03/advert-copy2-t.jpgadvert-copy2.jpg&#8221; &#8230;so probably something to do with formula to rename file after resizing? Don&#8217;t know php at all, but I&#8217;m messing with it to see if I can figure it out&#8230; =/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jt</title>
		<link>http://www.profitplugs.com/testimonials-manager-wordpress/comment-page-4/#comment-5504</link>
		<dc:creator>Jt</dc:creator>
		<pubDate>Wed, 10 Mar 2010 05:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.profitplugs.com/?p=19#comment-5504</guid>
		<description>Plugin works except for uploading own images. The files upload to the server okay, but the images aren&#039;t shown in the testimonial page. Can you help...running latest version of plugin and wordpress 2.9.2...thanks =)</description>
		<content:encoded><![CDATA[<p>Plugin works except for uploading own images. The files upload to the server okay, but the images aren&#8217;t shown in the testimonial page. Can you help&#8230;running latest version of plugin and wordpress 2.9.2&#8230;thanks =)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
