Нow i get error on all blog posts: 0 Call to undefined method EasyBlogPost::hasPinterest()
Not too sure if I understand you here. Did you apply some modifications to this file or?
Hey there,
You shouldn't replace the old file directly is because we might be included some new other fix into this same file JoomlaFolder/administrator/components/com_easyblog/includes/post/post.php .
The best way is edit this post.php file once you updated to latest version of Easyblog.
You have to find this line of code :
LINE 3280 - 3281
[gist type="php"]
$data['blogIntro'] = preg_replace('/(<[^>]+) style="(?!float).*?"/i', '$1', $data['blogIntro']);
$data['blogContent'] = preg_replace('/(<[^>]+) style="(?!float).*?"/i', '$1', $data['blogContent']);
[/gist]
Then replace to :
[gist type="php"]
// $data['blogIntro'] = preg_replace('/(<[^>]+) style="(?!float).*?"/i', '$1', $data['blogIntro']);
// $data['blogContent'] = preg_replace('/(<[^>]+) style="(?!float).*?"/i', '$1', $data['blogContent']);
[/gist]
By the way, try download my attached file and replace into this same file location, it should work fine and included your custom fix.