By Troy T. Hall on Thursday, 22 May 2014
Posted in Technical Issues
Replies 7
Likes 0
Views 1K
Votes 0
A kunena post does not retain its styling when posted onto the wall.
I primarily see this with lists.
Hello Troy,

Yep, that's the correct behavior because the content is truncated
·
Friday, 23 May 2014 00:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark,
You can still keep the styling even if you truncate it. Or am I wrong?
·
Friday, 23 May 2014 02:27
·
0 Likes
·
0 Votes
·
0 Comments
·
you would think a "list" would stay a list though, sure have a read more, but still be a list.
·
Friday, 23 May 2014 05:42
·
0 Likes
·
0 Votes
·
0 Comments
·
What I've seen some plugins do is have field to allow specific HTML elements. This way formatting doesn't break.
·
Friday, 23 May 2014 06:43
·
0 Likes
·
0 Votes
·
0 Comments
·
well, joomla and kunena already do that... jomsocial displays lists well.. with as picky as kunena is I would think the formatting would be no problem.
·
Friday, 23 May 2014 11:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey guys,

Try this, edit the file /media/com_easysocial/apps/user/kunena/kunena.php and at line 258 locate the codes below,


$topic->message = KunenaHtmlParser::parseBBCode( $topic->first_post_message , $parent , 250 );
$topic->message = $this->filterContent( $topic->message );


Replace with,


$topic->message = KunenaHtmlParser::parseBBCode( $topic->first_post_message , $parent , 0);
·
Friday, 23 May 2014 11:56
·
0 Likes
·
0 Votes
·
0 Comments
·
It looks like we did not add a settings for truncation. In the next version, Nik will add a new settings for truncation
·
Friday, 23 May 2014 12:17
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post