bhp-weisshaar
ok, I put off this code:
/* if ($dt->type === 'photo') {
$post['source_content'] .= '<p><img src="https://graph.facebook.com/' . $dt->attachments->data[0]->target->id . '/picture"/></p>';
} */
/ $link_pattren = '/href="(.?)l.facebook.com\/l.php\?u=(.?)&h(.?)"/';
$post['source_content'] = preg_replace_callback($link_pattren,
function ($matches) {
return 'href="'.rawurldecode($matches[2]).'"';
},
$post['source_content']
);
$post['source_content'] .= '
<div class="content-links">
<ol class="nav">
<li class="content-links-a">
<a href="'.$this->https.'://www.facebook.com/'.$fbid.'/posts/'.preg_replace('/[0-9]+_/','',$dt->id).'" target="_blank" rel="nofollow">'.$srcTxt.'</a>
</li>';
$post['source_content'] .= '</ol></div>'; */
in jasocial_feed.php. That works so far, but with the next update it's gone. So could you please put something in the config to turn off showing this image an the Content-Link?
Regards