By Richard on Tuesday, 07 January 2014
Posted in General Issues
Replies 8
Likes 0
Views 827
Votes 0
I am using the latest versions of Stackideas products on Joomshaper Awetive template with Joomla 3.2.1

JoomUltra has a tab/accordion/Slideshow module that works well with EasyBlog/EasyDiscuss/EasySocial modules, but I have one small style issue with the ED Replies module, as the html tags are visible in the module content.

I am making any adjustments in the custom.less file for the template, is there a simple css adjustment to fix the problem?

The end of the following video shows the problem (the first part of the video was for an ES Leaderboard query) :

EasyDiscuss Replies issue video = http://www.screencast.com/t/TepVabK0RrAo
Hello Richard,

Your ftp access was incorrect, please advice?

thanks:)
·
Tuesday, 07 January 2014 13:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Richard,

Please ignore my previous post, i was able to access by removing the www. for the ftp host, my colleague had fix your issue by cleaning the feed to the module and its working now.

Thanks:)
·
Tuesday, 07 January 2014 18:25
·
0 Likes
·
0 Votes
·
0 Comments
·
It is perfect, thank you!
·
Tuesday, 07 January 2014 21:40
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Richard,

You're welcome, glad to heard your issues resolved.
·
Wednesday, 08 January 2014 18:46
·
0 Likes
·
0 Votes
·
0 Comments
·
Could you please post here how to do the cleaning of the feed to the module(s)? Having the same problems with HTML tags in the text, after updating to the latest version with the "latest replies" and "recent discussions"...

TNX
·
Saturday, 01 March 2014 10:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Tim P.K.

I am really sorry for the delay of this reply as it is a weekend for us here.
JoomlaFolder\modules\mod_easydiscuss_latest_replies\helper.php
LINE 48
$item->content = DiscussHelper::wordFilter( $item->content);

Replace with
$item->content = strip_tags( html_entity_decode( DiscussHelper::wordFilter( $item->content) ) );


JoomlaFolder\modules\mod_recentdiscussions\helper.php
LINE 144
$row->content	= DiscussHelper::wordFilter( $row->content );

Replace with
$row->content 	= strip_tags( html_entity_decode( DiscussHelper::wordFilter( $row->content) ) );

If this doesn't help, please provide us with your Joomla backend and FTP access so we can help you check on this.
·
Saturday, 01 March 2014 12:20
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Arlex,

Thank you for the quick reply and the correct solution!

Modified both "helper.php" as per above instruction and everything works perfect now (the html tags are gone).

For the Recent Discussions Module: The line to change in the helper.php was on LINE 143 (in my case)...

Appreciate the assistance - Have a nice weekend!

Tim
·
Saturday, 01 March 2014 12:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Tim P.K.,

You''re welcome, glad to heard your issues solved.
Have a nice weekend too!
·
Saturday, 01 March 2014 12:41
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post