Display Custom Profile Field

On a person's profile page, if they have text in their Description, it will show up in a block.

I have added a "Profile Intro" text field the the edit profile form. I am trying to figure out how to create a block that will display that information on the View Profile page similar to how the Description block works.

Any guidance would be much appreciated!

  • 1535
  • More
Replies (3)
    • Hello @wynk.social !

      All new field can be enabled to show in the View Person form of the Info block. So you may add this block again and hide the less fields from there with the CSS or Javascript code.

      • That is not a practical solution since that block is already visible in the right column. Is there no way to show information outside of the canned blocks in the system?

        • Every block has the id looks like .bx-page-block-[block id] . So you may limit the visibility of the lines with the field via code like:

          #bx-page-block-[id] .css_class_name{

          }

          Or simlar trick with the Javascript / JQuery code.

          Login or Join to comment.