Feels like a stupid question, but anyway....... Where in my K2 item should I see the link to the original article. What setting in K2 or what setting in the Social Feed plugin am I missing?
pzaal Hi,
I check the same but also don't see the source link when importing feeds to K2 content. Let me check with our developer for further checking on this.
Regards
Updated:
Try to open this file: /plugins/system/jasocial_feed/tables/k2.php
At approx line 111, add this code:
$item['fulltext'] = '<p><a href="'.$post['source_url'].'">'.$post['source_url_txt'].'</a></p>';
then run the cron to index again.
Yessssss........ works great now !! I changed 'fulltext' to 'introtext' and that's doing the job fine also. Thanks for your support.
Just one question: I would prefer to open the RSS link in a new tab. I tried several ways to add target="blank" in the code line, but I'm missing the right syntax. Can you advise?
target="blank"
Thnx in advance, Paul
Sorry, K2 cache problem: This works: $item['fulltext'] = '<p><a target="_blank" href="'.$post['source_url'].'">'.$post['source_url_txt'].'</a></p>';
$item['fulltext'] = '<p><a target="_blank" href="'.$post['source_url'].'">'.$post['source_url_txt'].'</a></p>';
Thnx Paul
pzaal Hi. Great to hear that everything is resolved. Closing this thread now.