<?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: Extension 1: URL to Link Conversion</title>
	<atom:link href="http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/</link>
	<description>Website of Tobias Bäthge.</description>
	<lastBuildDate>Thu, 29 Jul 2010 02:47:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Ryan</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-2836</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sun, 04 Apr 2010 11:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-2836</guid>
		<description>Thanks Tobias, that is fantastic.

I am reviewing your discussion on that page, hopefully I&#039;ll be able to get it to work. If not, this is still awesome.

Thanks again!</description>
		<content:encoded><![CDATA[<p>Thanks Tobias, that is fantastic.</p>
<p>I am reviewing your discussion on that page, hopefully I&#8217;ll be able to get it to work. If not, this is still awesome.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-2813</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Thu, 01 Apr 2010 08:06:48 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-2813</guid>
		<description>Hi Ryan,

thanks for your comment.

Your desired feature is not integrated in the plugin natively, but you could write your own extension to achieve something like this.

It sounds as if you want to use a WP-Table Reloaded table as the data source for that idea, instead of a mySQL table or something similar.

I recommend taking a look at the code in &lt;a href=&quot;http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/comment-page-7/#comment-2744&quot; rel=&quot;nofollow&quot;&gt;this comment&lt;/a&gt;. There, I present a way to load a table, and pick a single cell from it. You would just need to modify that could a little, and instead of picking a single cell, you would loop through the &lt;code&gt;$table&lt;/code&gt; array and can perform your echo there.

Hope this helps!

Best wishes,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi Ryan,</p>
<p>thanks for your comment.</p>
<p>Your desired feature is not integrated in the plugin natively, but you could write your own extension to achieve something like this.</p>
<p>It sounds as if you want to use a WP-Table Reloaded table as the data source for that idea, instead of a mySQL table or something similar.</p>
<p>I recommend taking a look at the code in <a href="http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/support/comment-page-7/#comment-2744" rel="external">this comment</a>. There, I present a way to load a table, and pick a single cell from it. You would just need to modify that could a little, and instead of picking a single cell, you would loop through the <code>$table</code> array and can perform your echo there.</p>
<p>Hope this helps!</p>
<p>Best wishes,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-2810</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 01 Apr 2010 04:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-2810</guid>
		<description>This is fantastic Tobias.

I am still trying to get my head around them though. 

I am hoping to be able to get a plugin that will allow me to create a link to Google Maps, taking data from several table rows.

I currently have:
&lt;code&gt;id, firstname, lastname, address1, address2, city, postcode, state, country, email, website&lt;/code&gt; 
imported from csv.

In my own custom coded PHP, I simply do:
&lt;pre lang=&quot;php&quot;&gt;
echo &quot;&lt;a href=\&quot;inline_map.php?height=300&amp;width=500&amp;AgentsLocation=$row[4]+$row[5]+$row[6]+$row[7]+$row[8]\&quot; class=\&quot;thickbox\&quot; title=\&quot;View on google maps\&quot;&gt;...&lt;/a&gt;&quot;;
&lt;/pre&gt;
(I hope this copies through when I save).

Is there a way to be able to wrap this sort of output, similar to finding a href in the tables?

Any response is appreciated...</description>
		<content:encoded><![CDATA[<p>This is fantastic Tobias.</p>
<p>I am still trying to get my head around them though. </p>
<p>I am hoping to be able to get a plugin that will allow me to create a link to Google Maps, taking data from several table rows.</p>
<p>I currently have:<br />
<code>id, firstname, lastname, address1, address2, city, postcode, state, country, email, website</code><br />
imported from csv.</p>
<p>In my own custom coded PHP, I simply do:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>inline_map.php?height=300&amp;width=500&amp;AgentsLocation=<span style="color: #006699; font-weight: bold;">$row[4]</span>+<span style="color: #006699; font-weight: bold;">$row[5]</span>+<span style="color: #006699; font-weight: bold;">$row[6]</span>+<span style="color: #006699; font-weight: bold;">$row[7]</span>+<span style="color: #006699; font-weight: bold;">$row[8]</span><span style="color: #000099; font-weight: bold;">\&quot;</span> class=<span style="color: #000099; font-weight: bold;">\&quot;</span>thickbox<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span>View on google maps<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;...&lt;/a&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>(I hope this copies through when I save).</p>
<p>Is there a way to be able to wrap this sort of output, similar to finding a href in the tables?</p>
<p>Any response is appreciated&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-2483</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Tue, 23 Feb 2010 14:29:03 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-2483</guid>
		<description>Hi,

thanks for your comment!

You are right, that checkbox is only applicable to links created with the little wizard on the &quot;Edit&quot; screen. It does not influence the automatic conversion from this Extension.
I checked the WP source code again, unfortunately there&#039;s no easy way to have the necessary code inserted there by an Extension.

But all in all, I actually recommend to not make links open in a new window by default. This should be the choice of your site visitors, who can easily open the link in a new window/tab in their browsers, if they want to. If they don&#039;t want to, you should not force them.

Best wishes,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>thanks for your comment!</p>
<p>You are right, that checkbox is only applicable to links created with the little wizard on the &#8220;Edit&#8221; screen. It does not influence the automatic conversion from this Extension.<br />
I checked the WP source code again, unfortunately there&#8217;s no easy way to have the necessary code inserted there by an Extension.</p>
<p>But all in all, I actually recommend to not make links open in a new window by default. This should be the choice of your site visitors, who can easily open the link in a new window/tab in their browsers, if they want to. If they don&#8217;t want to, you should not force them.</p>
<p>Best wishes,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drapsag</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-2482</link>
		<dc:creator>drapsag</dc:creator>
		<pubDate>Tue, 23 Feb 2010 14:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-2482</guid>
		<description>Nice plugin! I made this extension work, but it will not make links open in a new window. Is the option &quot;open links in new window&quot; in the &quot;Plugin Options&quot; only applicable for original links?
Can it be done for this extension?</description>
		<content:encoded><![CDATA[<p>Nice plugin! I made this extension work, but it will not make links open in a new window. Is the option &#8220;open links in new window&#8221; in the &#8220;Plugin Options&#8221; only applicable for original links?<br />
Can it be done for this extension?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-1704</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Fri, 01 Jan 2010 23:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-1704</guid>
		<description>Hi Lembit,

yes, I will publish such a list in the documentation, when version 1.6 is released. The Filters are already in the list, just the descriptions will take some time :-)

Regards,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi Lembit,</p>
<p>yes, I will publish such a list in the documentation, when version 1.6 is released. The Filters are already in the list, just the descriptions will take some time :-)</p>
<p>Regards,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lembit</title>
		<link>http://tobias.baethge.com/2009/12/extension-1-url-to-link-conversion/comment-page-1/#comment-1699</link>
		<dc:creator>Lembit</dc:creator>
		<pubDate>Fri, 01 Jan 2010 20:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://tobias.baethge.com/?p=646#comment-1699</guid>
		<description>Hi Tobias,

I hope you would consider publishing a complete list of the filters available in WP-Table Reloaded with short descriptions. This could be a post in th Extension series and/or also included in plugin&#039;s documentation.

Best,
Lembit</description>
		<content:encoded><![CDATA[<p>Hi Tobias,</p>
<p>I hope you would consider publishing a complete list of the filters available in WP-Table Reloaded with short descriptions. This could be a post in th Extension series and/or also included in plugin&#8217;s documentation.</p>
<p>Best,<br />
Lembit</p>
]]></content:encoded>
	</item>
</channel>
</rss>
