Skip to main content
All CollectionsStyling Your Social WallCSS Tutorials
How to hide the timestamp and username on your wall?
How to hide the timestamp and username on your wall?

Can I hide the timestamps and usernames on my social wall?

Neira Dzabija avatar
Written by Neira Dzabija
Updated over 3 years ago

If you want to hide the timestamps on your posts 👇

you should add this code to your custom CSS box under Settings > Design 👇

.checkin-timestamp { /*hide the timestamp*/
display: none;
}

For hiding the usernames on your social wall 👇 ,

add this code to your CSS box 👇

.checkin-user-name { /*hide the username*/
display: none;
}

Once you add those CSS code snippets, the timestamp and username will disappear on each post 👇


In case you have further questions, don't hesitate to contact the support team via chat or support@walls.io!


Did this answer your question?