By Neal Barnett on Tuesday, 11 August 2015
Posted in Technical Issues
Replies 8
Likes 0
Views 535
Votes 0
When editing the author's Biography in Easyblog, it is stripping out all the formating out of the author's bio. I can't include images or links, or any formatting.

If I look at a biography made before the latest upgrade, the formating is correct. But if I resave that same author's profile, it will strip out the formating.

Please help.

Scroll down to see this bio. the bio contained the proper formating before I resaved the author's profile: http://www.onlyinfluencers.com/email-marketing-blog/entry/three-email-message-types-not-to-miss-in-your-customer-marketing-mix
Hi Bill,

By right the issue should have been fixed in the latest version of easyblog 5. Can you pass me your joomla backend and FTP access so we can check on the issue directly?
·
Tuesday, 11 August 2015 11:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Im having the same issue. I posted this yesterday but have not received a response either.
·
Tuesday, 11 August 2015 22:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Ezrul -

I just updated to the current version of EasyBlog (5.19), and the problem is still occurring.

I've attached backend and FTP info.
·
Wednesday, 12 August 2015 01:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Bill,

It seems like the issue is only occur with JCE editor. I've applied some modification inside your /administrator/components/com_easyblog/controllers/bloggers.php and it should be working correctly now. Can you verify it for me?

Michael,

You can download the attachment below and place it inside your /administrator/components/com_easyblog/controllers/ folder and see how it goes.
·
Wednesday, 12 August 2015 12:21
·
0 Likes
·
0 Votes
·
0 Comments
·
That seems to have fixed it. Thank you for your help.
·
Wednesday, 12 August 2015 19:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Bill,

You are most welcome. Glad that your issue has been resolved now.
·
Wednesday, 12 August 2015 22:27
·
0 Likes
·
0 Votes
·
0 Comments
·
I have the same issue what we need to change?
·
Tuesday, 08 September 2015 10:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Evan,

This issue has already been addressed in latest release of easyblog. You can go to your /administrator/components/com_easyblog/controllers/bloggers.php and search the code at line 195~199:
$post['description'] = $this->input->get('description', '', 'html');
$post['biography'] = $this->input->get('biography', '', 'html');

// Replace with

$post['description'] = $this->input->get('description', '', 'raw');
$post['biography'] = $this->input->get('biography', '', 'raw');


If you are using older version you can try to update your easyblog to latest and see how it goes.
·
Tuesday, 08 September 2015 12:28
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post