2024-05-13, 06:19 PM
Good question. I have been using CSS selectors to hide things that I dont want. Go to your Dashboard -> General -> "Custom CSS code" and add this:
This hides both the User Name, and Photo. The data is still there in the HTML, but you dont see it.
Code:
.sessionCardFooter.cardFooter > div > div.sessionUserName {display: none; width:0 !important }
.sessionCardFooter.cardFooter > div > div.activitylogUserPhoto {display: none; width:0 !important}
This hides both the User Name, and Photo. The data is still there in the HTML, but you dont see it.