I want the default profile to be "Person"

Hi all

I need the default profile for account creation to be a person profile. Then, if the user wants, they can create other profiles (person or organization).

With the following configuration, I can initially achieve what I need. However, if the user doesn't complete the form (create-person-profile) and clicks on any other link on the page, then when they try to complete the profile because the system requires it, two options appear (People and Orgs).

image_transcoder.php?o=sys_images_editor&h=2951&dpx=1&t=1764032573

What I want is for them to only be able to complete the "Person" form.

image_transcoder.php?o=sys_images_editor&h=2952&dpx=1&t=1764032651

Is it possible to modify the "Please create a profile to start using the site" link so that it leads to the "Person" form?

Specifically, I don't want someone to be able to create an Orgs profile without first creating a People profile.

Thank you very much.

  • 132
  • More
Replies (5)
    • I think it would go like this. Go to Navigation-Items-System-Add Profile  

      Hide Orgs(visible for) or turn them off completely

      image_transcoder.php?o=sys_images_editor&h=2953&dpx=1&t=1764043708

      • Hello @Claudio Acosta !

        You may close the Create Org action for the necessary level. But if you need definitely to disable this option in the Profiler Switcher then you may add the RAW block in the Studio->Pages->System->Account ->My Profiles page, put it to the end of all blocks and add there the following code:

        <script>
        	$(".bx-menu-object-sys_add_profile li:odd").hide();
        </script>
        

        then limit visibility of this block for the certain membership levels like Account, Unconfirmed etc

        • @Hi @PavelS @LeonidS

          I suppose I didn't explain myself clearly.

          I need it to be a requirement that a person has a People profile before creating an Orgs profile.

          Is this possible through configuration, or does it require programming changes?

          Thanks.

          • Hi @LeonidS

            If you could tell me about this, I would appreciate it.

            I need to know if this is possible to move forward with my project.

            Thank you very much.

            • UPDATE: the solution works but dear @Claudio Acosta has troubles to insert it to the RAW block due to hosting security settings.

              Login or Join to comment.