#supsystic-table-1 .supsystic-tables-wrap a {
display: none;
}
where 1 is the id of the table doesn’t seem to work. it is appending a random number each time I save. eg. supsystic-table-1_78967 so can never match to the css.
However, removing the id and just using the class seems to work for me (I don’t see the class used anywhere else except for the edit button).
.supsystic-tables-wrap a {
display: none;
}
Hope this helps some others out until a permanent fix is made.