Thanks for getting back to me. It’s not just the table header but the <td>s themselves in the loop that need to go. I wondered if there was a function I could use to, say, target the dropdown and automatically uncheck those two columns so they wouldn’t appear.
In case anyone else needs to do this, I hid them using CSS since it turns out each of those columns have unique classes (good work, some coder!). So this did the trick:
.events-community.my-events .optional1 {display:none !important}
.events-community.my-events .optional2 {display:none !important}
MD
-
This reply was modified 10 years, 5 months ago by
Mad Dog.