0 Link to Planning Center account Shared by Alex Yarmolatii, The Promise Center 15 hours ago 16.6 CRM Beginner If you're migrating from Planning Center (or possibly another system), this tip might help. Someone asked if we could link a Rock profile back to the original Planning Center profile, for example, to view their history.Here’s how we did it:During your CSV import, store the PCO ID as the person’s ForeignId in Rock.Add an HTML block with this Lava code.Enable Lava Commands and set the Context Entity Type to Person.Here’s the Lava code to use:{% assign person = Context.Person %}{% assign pcid = person | Property:'ForeignId' %}{% if pcid != empty %} <a class="btn btn-primary" style="margin-bottom: 25px;" target="_blank" href="https://people.planningcenteronline.com/people/{{ pcid }}"> View in Planning Center </a>{% else %} <span class="text-muted">No Planning Center ID available</span>{% endif %}That’s it! Now you’ll see a button on the person’s profile page that opens their record in Planning Center (if the ID is available).