Comment to 'Hiding a Membership Level on the purshase page.'
  • Hello @OneEagle !

    The easiest solution - to make this level very expensive as it isn't for the automatic payment. It is even better then to create the RAW block with Javascript code which will remove it.

    • 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>