By Artem Lebsak on Sunday, 09 December 2018
Posted in General Issues
Replies 4
Likes 0
Views 516
Votes 0
Some BBcode tags, like [color] or [size] or double [b ] tags - doesn't supported in EasyDiscuss but still showing as text in posts.
How to hide them without editing messages?
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

May i know what do you mean by "double [b ] tags"?

How to hide them without editing messages?

Unfortunately that is no other way around to hide them after migrated, may i know your site Easydiscuss haven't live yet right?
If that is the case, i would suggest you that to do the re-migrate process.

May i know how many discussion post you have from Kunena?
I will modify some code to remove those [color] or [size] tag during migration.
·
Sunday, 09 December 2018 10:59
·
0 Likes
·
0 Votes
·
0 Comments
·
This is [b]double b tag[/b] – two times around one part of text.

Re-migrate - too late. A lot of editing tasks done already manually – new category structure, forums are cleaned from old posts & so on.

There is one more bug – after migration attachments not showing in post. It start working only after opening post on editing & saving after that. Example: http://defenderussia.com/forum/events/a-kak-naschet-prokatitsya-po-zone#%D0%BE%D1%82%D0%B2%D0%B5%D1%82%D0%B8%D1%82%D1%8C-8416

---

In perfect world EasyDiscuss need BBcode manager, like RokCandy https://rockettheme.com/joomla/extensions/rokcandy
·
Sunday, 09 December 2018 18:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Artem,

There is one more bug – after migration attachments not showing in post. It start working only after opening post on editing & saving after that. Example: http://defenderussia.com/forum/events/a-kak-naschet-prokatitsya-po-zone#%D0%BE%D1%82%D0%B2%D0%B5%D1%82%D0%B8%D1%82%D1%8C-8416


Try run this following SQL query in your database.

Remember replace this #_ to your current table prefix.
[gist type="php"]
UPDATE `#__discuss_thread` set `preview` = REPLACE(`preview`, 'http://def-club.com/?controller=attachment', 'http://defenderussia.com/forum?controller=attachment');

UPDATE `#__discuss_posts` set `preview` = REPLACE(`preview`, 'http://def-club.com/?controller=attachment', 'http://defenderussia.com/forum?controller=attachment');
[/gist]

Before you execute these SQL query above, you have to make sure you do the full backup first.
·
Monday, 10 December 2018 11:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post