Is there a way to show a single author's response in a topic?
3 posters
Page 2 of 2
Page 2 of 2 • 1, 2
Is there a way to show a single author's response in a topic?
First topic message reminder :
In other forums, I've seen it possible to display only one author's message in a topic post. Are there any mod that can do that?
In other forums, I've seen it possible to display only one author's message in a topic post. Are there any mod that can do that?
Re: Is there a way to show a single author's response in a topic?
skouliki wrote:Something like this? https://help.forumotion.com/t159105-hidden-text-and-images-like-in-discord#1107658
no,like this
Re: Is there a way to show a single author's response in a topic?
So hide all comments less the author. Create a new JavaScript page with investment in the topics (go to Adminstration Panel > Modules > HTML & JAVASCRIPT > Javascript codes management) with the following code:
- Code:
(function ($) {
'use strict';
$(function () {
var $author = $('.post').first().find('.postprofile-name').text();
$('.post:not(:first)').each(function () {
var $this = $(this);
var $pauthor = $this.find('.postprofile-name').text();
if(new RegExp($author, 'i').test($pauthor)) return;
$this.fadeOut();
});
});
})(jQuery);
Re: Is there a way to show a single author's response in a topic?
Problem solved & topic archived.
|
Page 2 of 2 • 1, 2
Similar topics
» Miscellaneous changes to default templates
» Response to a topic I posted: Sign up application
» Show full topic title on AwesomeBB
» Show this topic as....
» Topic Icons don't show.
» Response to a topic I posted: Sign up application
» Show full topic title on AwesomeBB
» Show this topic as....
» Topic Icons don't show.
Page 2 of 2
Permissions in this forum:
You cannot reply to topics in this forum