Comment to 'Hiding a Membership Level on the purshase page.'
  • In the acl-view page, every row with permission level has its own id like

    bx_acl_view_row_1

    You need to find the need one with the browser developer console like in the attached example and then add a new RAW block via the Pages builder with the following CSS code:

    <style>

     #bx_acl_view_row_1 {

      display: none;

     }

    </style>