Multiline Text Field with Append changes on

Hi,
Looking at the multiline text field in plumsail, we get the user profile image showing next to the name and the text added. can we remove the user profile pic? so it just shows Name, Date Time Stamp - Text

Thanks
Ben

Hello Ben!

I think the easiest way to hide the profile pic would be to use custom CSS:

.fd-form .fd-field-note-history-entry-avatar {
    display: none;
}

@nikitat
Along these same lines, is it possible to remove the hyperlink capability from the author's name on these type comments?

Hi @rhonda,
It depends on your requirements - if you only need to prevent accidental clicking you can use the following custom CSS:

.fd-form .fd-field-note-history-entry>.d-flex a {
    pointer-events: none;
    
    /* use this line if you want to use the regular text color */
    color: unset; 
}

Note that you might have to update the selector (the part before the curly bracket) in the future.

If there should be no way to access the link (focusing the link by Tab, for example), you can remove the link entirely and replace it with regular text using custom JS:

fd.spRendered(() => {
    fd.field("ColumnName").ready(field => { // replace ColumnName with actual name of the column
        const authors = field.$el.querySelectorAll(".fd-field-note-history-entry>.d-flex a");
        for (const author of authors) {
            const newAuthorElement = document.createElement("b"); // you can use other html elements if you want
            newAuthorElement.innerHTML = author.innerHTML;
            newAuthorElement.className = 'entry-author'; // add custom class name to be able to easily select these elements in custom CSS
            author.replaceWith(newAuthorElement);
        }
    });
})

Again, in the future you might have to replace the selectors used here. Hope this helps!