I have a portion of my k2 item template that looks like this:
<span>I'm a</span><?php echo $extrafields[16];?><span> year old</span><?php echo $extrafields[20];?> <span>hair,</span><?php echo $extrafields[14];?><span> eyes,</span><?php echo $extrafields[4];?>
<a href="<?php echo $this->item->category->link; ?>"><?php echo substr($this->item->category->name, 0, -1); ?></a>
<span>available for</span><?php foreach ($this->item->tags as $tag): ?>
<a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?>,</a>
<?php endforeach; ?><span>modeling jobs.</span>
Which outputs this for example:
I'm a31 year oldbrown hair,brown eyes,5' 9" Indiana Model available for pinup, alternative, lingerie, swimwear, implied, fashion, editorial, fitness, parts, retro, glamour, beauty, boudoir, runway, promotional, modeling jobs.
Can you help me understand what {jfbconnect code} to put before and after this so that this area becomes the PULLed portion into facebook likes and recommendations?
All my items in k2 have extra fields and tags complete but not all use the primary content area so this is highly desireable as it makes for a consistent presentation for every page.