I know I responded to you directly via email several months back, but I just noticed that I never followed up on this forum post. In case anyone else has this same question, this can be done by adding some CSS to your theme. Each column has it’s own CSS class so you can apply custom styling as desired. In this case the class for the date column is .column-date
. Adding something like the following should produce the desired result…
@media only screen and (max-width: 760px) {
.column-date {
display: none;
}
}