ContributionsMost RecentMost LikesSolutionsRe: 2023 Customer Awards: Zoom - Best-in-Class: Community 👍 👍. 👍 👍 👍 Kudos for this Community! 👍 👍 👍 👍 Re: Khoros Maintenance Windows Chiming in here with Leandra_N's reply on the Tues/Thurs 11:59:59 PM - 04:00 AM release Does times for updates start 11:59:59PM Thursday to 4:00am Friday? I ask this because I got a notification via email on the Friday at around ~2:00am. Usually do not check stage/prod updates until the email notification. Thanks Create Custom Component Based On Roles Hey Dev Discussion, right now in my community we're trying to leverage a component to show permissioned based boards depending on your role in the community. For example, we have 3 Roles: A, B, and C Role A has permission to the component and 2 links. Role B has permission to the component and 3 links are displayed but has Role A also. Role C has permission to the component and 4 links are displayed but have Role A and C. I believe I saw this code elsewhere and was trying to make edits to make this possible without creating separate components. When I did create separate components, for example, Role A could see their component. When signed into Role B could see Role A's links. And Role Bs could see their links in another component and Role A's component was still there. I hope this makes sense thus far! Haha! Here is the script I was going to leverage and attempt however, didn't seem to work when I tried to throw in <#elseifs>. <#attempt> <#assign user_has_role = false /> <#if user.registered > <#list restadmin("/users/id/${user.id?c}/roles").roles.role as role> <#if role.name?? && (role.name == "Employee" || role.name == "Administrator" || role.name == "Ambassador")> <#assign user_has_role = true /> </#if> </#list> </#if> <#if user_has_role > Role A <#elseif> Role B <#/elseif> <#elseif> Role C <#/elseif> <#/if> </#attempt> Open to other suggestions around this! Thank you! Re: How to restrict a custom component only for user logged in? Hey StanGromer can i leverage <#elseif> for another role.name and<#if user_has_role > display this content. ? In theory, I'd like to Display role-based links to boards for role A. Display the same links, however, if I have a role B, display 1 more link. While displaying the same content, if I have role 3, display 1 more link or a different set of links. Any ideas around the code you already have implemented for numerous roles under the same component? Change A Users Profile Page Header Hero Image Hello! I was wondering if I can change the Profile Page Header image. Playing around in Stage and Studio, I have the asset uploaded from the library In the studio. However, I am seeing that it pulls from the Homepage Header Hero image. Wondering if this is a custom component override to a user's profile? Or is there an easier way to uploading that Hero Image on a user's profile or all user's profile pages. Thanks! Solved