By GM on Friday, 30 September 2016
Posted in Technical Issues
Replies 7
Likes 0
Views 316
Votes 0
How to show

1. In discuss - 3, New in red icon used to appear before posts less than 3 days old
I can not find this in discuss 4, is there some setting to be done for this

2. In discuss - 3, while an edit was done to a post - emails were not going to all the users
However - in discuss 4 - its a good feature that email goes when an edit is been done. But - is there a setting by which when an edit is been done by superadmin then emails should not go

Even if a setting is not there - can you suggest codes to do same in which file

3. While Emails are going it shows logo of easydiscuss in emails. Is there a setting to rather remove in easydicuss logo and let site main logo to go in

Pls advise

Thanks
Hi there,

1.
1. In discuss - 3, New in red icon used to appear before posts less than 3 days old
I can not find this in discuss 4, is there some setting to be done for this

It seems that this feature have been removed from EasyDiscuss1.x. Sorry for any inconvenience.

2.
In discuss - 3, while an edit was done to a post - emails were not going to all the users
However - in discuss 4 - its a good feature that email goes when an edit is been done. But - is there a setting by which when an edit is been done by superadmin then emails should not go

It seems that we didn't implement this kind of settings in our Easydiscuss4.x. As you can see here http://prntscr.com/co2jut , there are no setting for sending emails notifications when the user done editing the post. Maybe what i understand is wrong. Can you please advice and guide us on how to replicate this on our local?

3.
While Emails are going it shows logo of easydiscuss in emails. Is there a setting to rather remove in easydicuss logo and let site main logo to go in

You can follow this steps guided in this documentations.
https://stackideas.com/docs/easydiscuss/administrators/templating/overrides-email-logo
·
Friday, 30 September 2016 16:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Is there a way for showing in discuss - 4 the red icon (showing new) as used to appear before posts less than 3 days old
If a minor hack pl suggest

This was very useful and unsure why it was removed
GM
·
Saturday, 15 October 2016 14:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

This was very useful and unsure why it was removed

This is because we have put one more feature that is "Unread" feature at Backend>Components>EasyDiscuss>Settings>Layout>Recent View as shown http://prntscr.com/cv8i8d
·
Monday, 17 October 2016 12:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Is there a way for showing in discuss - 4 the red icon (showing new) as used to appear before posts less than 3 days old
If a minor hack pl suggest
GM
·
Monday, 17 October 2016 12:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Can you try to replace attached file on path below
...\components\com_easydiscuss\themes\wireframe\posts\item.php

Please give it a try and see how it goes.
·
Monday, 17 October 2016 13:36
·
0 Likes
·
0 Votes
·
0 Comments
·
Great thanks - so its ppossible
actually the file has been modified and customized with many changes in it at our end

Could you brief in what lines to be removed / modified / added - so that can do the same in modified file
appreciate help
thanks
GM
·
Monday, 17 October 2016 14:14
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Here are the line I included in above file.

[gist type="php"]
//line 13-20
$readCss = '';
$isRead = false;
if( $this->profile->id != 0)
{
$readCss = ( $this->profile->isRead( $post->id ) || $post->legacy ) ? ' is-read' : ' is-unread';
$isRead = ( $this->profile->isRead( $post->id ) || $post->legacy ) ? false : true;
}

//line 43-45
<?php if( !$isRead ) { ?>
<span class="label label-info"><?php echo JText::_( 'COM_EASYDISCUSS_NEW' );?></span>
<?php } ?>
?>
[/gist]
·
Monday, 17 October 2016 15:26
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post