In my Website homepage I want to remove date which is written along author name [closed]

Little dirty but fast solution is to hide it via css. add this code to custom css

.home .td-big-grid-post .td-post-date {
  display: none;
}

Better approach would be to find a template file or function responsible for this section and remove or change it…