Hello,
I want to add “Last-edited” word before date on post page please give suggestion which template file i can customize in discourse. Please check provided screenshot also.

Thank you in advance!!
Best,
krishna
Hello,
I want to add “Last-edited” word before date on post page please give suggestion which template file i can customize in discourse. Please check provided screenshot also.

Thank you in advance!!
Best,
krishna
Hello,
You can use a simple css to make this. This way you don’t need to modify anything… ![]()
Add the following to Common / CSS
.post-info {
&.edits + .post-date {
&:before {
content: 'Last Edited:';
margin-right: 0.25em;
color: var(--primary-medium);
}
}
}
It will only add Last Edited: text if there is edits.
Thank you so much sir, Appreciated you !! You save my time!!
You should be able to mark as Solution?