Notifications
Clear all

Hide Time from the post

2 Posts
2 Users
1 Reactions
59 Views
Posts: 4
Topic starter
(@david111)
Active Member
Joined: 1 week ago

Is there any way to hide the post time from the forum which displays the time when the post was submitted

1 Reply
Tutrix
Posts: 1436
(@tutrix)
Noble Member
Joined: 4 years ago

Hi @david111 

You can do this with CSS "display: none".
Use your browser's web developer tools to find the right CSS classes.
Example for your topic here in the forum index

#wpforo #wpforo-wrap .wpforo-widget-content .wpforo-list-item-right .postuser span,
#wpforo #wpforo-wrap .wpfl-4 .wpf-thread-box.wpf-thread-title .wpf-thread-author-name .wpforo-date-ago,
#wpforo #wpforo-wrap .wpfl-4 .wpf-thread-box.wpf-thread-last-reply .wpf-thread-last-info .wpf-thread-last-date {
  display: none;
}
Reply