Comment to 'Hiding a Membership Level on the purshase page.'
  • I would love to do not put any price to it because it is a Courtesy Membership and it is supposed to be free. Also I don't want the price to show to the member' in the dashboard. So what Javascript to put in the Raw block to hide/romove the membership from the purchase 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>