<?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 That Net Site</title>
	<atom:link href="http://thatnetsite.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thatnetsite.com</link>
	<description>A Blog About What is On &#039;My&#039; Mind</description>
	<lastBuildDate>Sun, 05 Feb 2012 01:38:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-2/#comment-62930</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sun, 05 Feb 2012 01:38:10 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62930</guid>
		<description>Thanks and got it, a fix has been sent to you via email. though for everyone else here is the answer.

Code used by you for the website field was

&lt;pre&gt;&lt;div class=&quot;website&quot;&gt;
  &lt;img style=&quot;height:24px; width:24px; float:left;&quot; src=&quot;../../../../../../images/icons/website.png&quot; /&gt;
    &lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;    						
    &lt;xsl:attribute name=&quot;href&quot;&gt;
      &lt;xsl:value-of select=&quot;entry/fields/field_website/data&quot; /&gt;
    &lt;/xsl:attribute&gt;
    &lt;xsl:value-of select=&quot;entry/fields/field_website/data&quot; /&gt;    
  &lt;/a&gt;
&lt;/div&gt;&lt;/pre&gt;

This results in being provided the url as being http://yoursite.com/the-entry-name, but what is wanted is http://the-entry-site.com

Error is the use of the data in the field which then uses the title provided or added or the URL after the local url, i.e. your url.

The fix (see the Changed Line) 

&lt;pre&gt;&lt;div class=&quot;website&quot;&gt;
  &lt;img style=&quot;height:24px; width:24px; float:left;&quot; src=&quot;../../../../../../images/icons/website.png&quot; /&gt;
    &lt;a target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;   						
      &lt;xsl:attribute name=&quot;href&quot;&gt;
        &lt;xsl:value-of select=&quot;entry/fields/field_website/data/a/@href&quot; /&gt;   (Changed Line)
      &lt;/xsl:attribute&gt;
    &lt;xsl:value-of select=&quot;entry/fields/field_website/data&quot; /&gt;    
  &lt;/a&gt;
&lt;/div&gt;&lt;/pre&gt;

And it now works as it should being the url of http://the-entry-site.com with the correct title being what it has been entered to be.</description>
		<content:encoded><![CDATA[<p>Thanks and got it, a fix has been sent to you via email. though for everyone else here is the answer.</p>
<p>Code used by you for the website field was</p>
<pre>&lt;div class="website"&gt;
  &lt;img style="height:24px; width:24px; float:left;" src="../../../../../../images/icons/website.png" /&gt;
    &lt;a target="_blank" rel="nofollow"&gt;
    &lt;xsl:attribute name="href"&gt;
      &lt;xsl:value-of select="entry/fields/field_website/data" /&gt;
    &lt;/xsl:attribute&gt;
    &lt;xsl:value-of select="entry/fields/field_website/data" /&gt;
  &lt;/a&gt;
&lt;/div&gt;</pre>
<p>This results in being provided the url as being <a href="http://yoursite.com/the-entry-name" rel="nofollow">http://yoursite.com/the-entry-name</a>, but what is wanted is <a href="http://the-entry-site.com" rel="nofollow">http://the-entry-site.com</a></p>
<p>Error is the use of the data in the field which then uses the title provided or added or the URL after the local url, i.e. your url.</p>
<p>The fix (see the Changed Line) </p>
<pre>&lt;div class="website"&gt;
  &lt;img style="height:24px; width:24px; float:left;" src="../../../../../../images/icons/website.png" /&gt;
    &lt;a target="_blank" rel="nofollow"&gt;
      &lt;xsl:attribute name="href"&gt;
        &lt;xsl:value-of select="entry/fields/field_website/data/a/@href" /&gt;   (Changed Line)
      &lt;/xsl:attribute&gt;
    &lt;xsl:value-of select="entry/fields/field_website/data" /&gt;
  &lt;/a&gt;
&lt;/div&gt;</pre>
<p>And it now works as it should being the url of <a href="http://the-entry-site.com" rel="nofollow">http://the-entry-site.com</a> with the correct title being what it has been entered to be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-2/#comment-62922</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sun, 05 Feb 2012 00:57:58 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62922</guid>
		<description>Ok, I will take a look at it as soon as I can :)</description>
		<content:encoded><![CDATA[<p>Ok, I will take a look at it as soon as I can <img src='http://thatnetsite.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-2/#comment-62921</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sun, 05 Feb 2012 00:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62921</guid>
		<description>Tom I did do a reply to your post, have a look further up in these comments to see it, it was not that long enough.  If it was an additional question feel free to post it again.</description>
		<content:encoded><![CDATA[<p>Tom I did do a reply to your post, have a look further up in these comments to see it, it was not that long enough.  If it was an additional question feel free to post it again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by jose</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62663</link>
		<dc:creator>jose</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62663</guid>
		<description>ok, I´d just sent it</description>
		<content:encoded><![CDATA[<p>ok, I´d just sent it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Tom</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62643</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 03 Feb 2012 07:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62643</guid>
		<description>Greg - Just wondered if you got my last post. I don&#039;t see it here, but I had posted some specific code and questions.
Tom</description>
		<content:encoded><![CDATA[<p>Greg &#8211; Just wondered if you got my last post. I don&#8217;t see it here, but I had posted some specific code and questions.<br />
Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62591</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 03 Feb 2012 02:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62591</guid>
		<description>Jose, as per my other reply can you send me your code/file via my contact page.  I can then take a look and see what you have and why it&#039;s not working.</description>
		<content:encoded><![CDATA[<p>Jose, as per my other reply can you send me your code/file via my contact page.  I can then take a look and see what you have and why it&#8217;s not working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62590</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 03 Feb 2012 02:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62590</guid>
		<description>Hi again, sorry my suggestion did not help, may I ask you to send me the file so I can see the code via my contact form please at &lt;a href=&quot;http://thatnetsite.com/contact-me/&quot; title=&quot;Contact Me&quot; rel=&quot;nofollow&quot;&gt;http://thatnetsite.com/contact-me/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hi again, sorry my suggestion did not help, may I ask you to send me the file so I can see the code via my contact form please at <a href="http://thatnetsite.com/contact-me/" title="Contact Me" rel="nofollow">http://thatnetsite.com/contact-me/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62586</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 03 Feb 2012 01:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62586</guid>
		<description>Are your entries displaying on the category page at all?  I am going to assume yes, but just that the image/thumbnail is not showing?

Are you using the default template or a copy of the default template?  Recommend you use a copy or duplicate of the default template and call it something else.

To add an image to the vcard check that the image field is set to display on the vcard or both, unless that is done it will not show on the card, also check it is published/enabled.
If you are inputting your own field names then the default template might conflict, the default template auto shows all fields that have been assigned to the vcard or both on the vcard display.

Adding the image to a vcard is simple, that code being;

For a single image in the vcard use the code

  &lt;pre&gt;&lt;xsl:copy-of select=&quot;fields/field_item_main_image/data&quot; /&gt;&lt;/pre&gt;
For a single image in the detail sview use the code

  &lt;pre&gt;&lt;xsl:copy-of select=&quot;entry/fields/field_item_main_image/data&quot; /&gt;&lt;/pre&gt;
Where field_item_main_image is the name of the image field you want displayed.

Get back to me if I have misunderstood your request with a little more info, if you need to paste code replace &lt; with &lt; and &gt; with &gt; for it to show up in the comments, wrap that in &lt;pre&gt;&lt;/pre&gt;. (you can do a search and replace within most txt editors, try notepad++)</description>
		<content:encoded><![CDATA[<p>Are your entries displaying on the category page at all?  I am going to assume yes, but just that the image/thumbnail is not showing?</p>
<p>Are you using the default template or a copy of the default template?  Recommend you use a copy or duplicate of the default template and call it something else.</p>
<p>To add an image to the vcard check that the image field is set to display on the vcard or both, unless that is done it will not show on the card, also check it is published/enabled.<br />
If you are inputting your own field names then the default template might conflict, the default template auto shows all fields that have been assigned to the vcard or both on the vcard display.</p>
<p>Adding the image to a vcard is simple, that code being;</p>
<p>For a single image in the vcard use the code</p>
<pre>&lt;xsl:copy-of select="fields/field_item_main_image/data" /&gt;</pre>
<p>For a single image in the detail sview use the code</p>
<pre>&lt;xsl:copy-of select="entry/fields/field_item_main_image/data" /&gt;</pre>
<p>Where field_item_main_image is the name of the image field you want displayed.</p>
<p>Get back to me if I have misunderstood your request with a little more info, if you need to paste code replace < with &lt; and > with &gt; for it to show up in the comments, wrap that in
<pre></pre>
<p>. (you can do a search and replace within most txt editors, try notepad++)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by Greg</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62583</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Fri, 03 Feb 2012 01:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62583</guid>
		<description>Thanks for the support :)</description>
		<content:encoded><![CDATA[<p>Thanks for the support <img src='http://thatnetsite.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SobiPro Templating How To&#8230; by jose</title>
		<link>http://thatnetsite.com/2011/06/sobipro-templating-how-to/comment-page-1/#comment-62460</link>
		<dc:creator>jose</dc:creator>
		<pubDate>Thu, 02 Feb 2012 11:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://thatnetsite.com/?p=354#comment-62460</guid>
		<description>I wrote yesterday for same thing, I´ve realised that the problem comeswhen user are able to put name to their website URLs, then the http exit is like that for an entry with this data

name testname
url www.google.com

tha exit is &lt;a href=&quot;/google.com&quot; rel=&quot;nofollow&quot;&gt;testname&lt;/a&gt;

wich results in a link that leads me to http://mysitedomain/google

and I don´t understand why, because the default template shows it nice</description>
		<content:encoded><![CDATA[<p>I wrote yesterday for same thing, I´ve realised that the problem comeswhen user are able to put name to their website URLs, then the http exit is like that for an entry with this data</p>
<p>name testname<br />
url <a href="http://www.google.com" rel="nofollow">http://www.google.com</a></p>
<p>tha exit is <a href="/google.com" rel="nofollow">testname</a></p>
<p>wich results in a link that leads me to <a href="http://mysitedomain/google" rel="nofollow">http://mysitedomain/google</a></p>
<p>and I don´t understand why, because the default template shows it nice</p>
]]></content:encoded>
	</item>
</channel>
</rss>

