By Brett Buchanan on Saturday, 06 June 2015
Replies 4
Likes 0
Views 1K
Votes 0
Hi! The Q&A on this stackideas site is PERFECT for my needs. A while back you mentioned there might be a version like it in the future. It's been a year, any update on this? Thanks!
Hello Brett,

Do you mean our forums or FAQ area? The forums on our site is pretty much a stock version of EasyDiscuss actually.
·
Sunday, 07 June 2015 00:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes that is what I mean. I would like the categories to be on the right, as you have it, and show the number of unanswered questions in red, as you have it. Basically, i want to set it up exactly how you have it. The last time I asked, last year, the forum moderator said it was not available in that configuration yet.
·
Sunday, 07 June 2015 01:18
·
0 Likes
·
0 Votes
·
0 Comments
·
I also don't like the numbers boxes on each topic. It's makes everything too cluttered, especially when viewing on mobile. I noticed your forum does not have this. Anyway to remove? Image attached.
·
Sunday, 07 June 2015 01:22
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Brett,

I would like the categories to be on the right, as you have it, and show the number of unanswered questions in red, as you have it.

Ah I see. To be honest we do not have this functionality in the current version of easydiscuss yet. Do note that our stackideas forum is heavily customized in order to give the best experience for our forum users.

I also don't like the numbers boxes on each topic. It's makes everything too cluttered, especially when viewing on mobile. I noticed your forum does not have this. Anyway to remove? Image attached.

You need to manually modify the code in order to remove it. You can go to your /components/com_easydiscuss/themes/simplistic/frontpage.post.php and at line 68 replace the following code:
<div class="discuss-statistic pull-right">
<!-- replace with -->
<div class="discuss-statistic pull-right" style="display:none">

Or you can use the css override by placing the following css code inside your template.css file.
.discuss-story .discuss-statistic {
display : none;
}


Hope these help.
·
Monday, 08 June 2015 16:21
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post