ContributionsMost RecentMost LikesSolutionsRe: How to pass ajax response to a macro? You can try httpclientrequest https://developer.khoros.com/khoroscommunitydevdocs/docs/about-endpoints#endpoint-basics Re: Trying to use jQuery and liaAddScript to add anchor to TKB article 1. Elements can be loaded after your script is executed. Stop script execution via debugger on start and check DOM tree for ".kbsync-applies-to". Try to wrap your code into DOMContentLoaded event listener or similar. 2. To prevent violation try to create custom component of TKB article list using the override and delegate FreeMarker directives. Or add anchors as id attribute to existing DOM elements. Re: Khoros Communities 20.5 Release Notes Can you give us example of JSON-based query in freemarker components, if it can be used. I'm interested in this syntax, but for use it inside community (without session keys and etc.) Re: Customizing the CSS for Studio Itself As a workaround, you can use the browser extension Stylus and/or Tampermonkey for some js to change element behavior. I usually use these fields only for copy-paste from/to the editor with syntax highlighting. Re: Need custom component to display user's location in Profile Hero I wrote a similar (Page->Forum Message): <#if (env.context.message.author.id)??> <#assign user = rest("2.0","/search?q=" + "SELECT location FROM users WHERE id = '${env.context.message.author.id}'"?url).data.items[0] /> <#if user.location??> <div class="lia-panel lia-panel-standard"> <div class="lia-panel-heading-bar-wrapper"><div class="lia-panel-heading-bar"><span aria-level="4" role="heading" class="lia-panel-heading-bar-title">Місто</span></div></div> <p>${user.location}</p> </div> </#if> </#if> But only admins and moderators can see this component. How can I extend view permissions for all users? Solved by: https://lithosphere.lithium.com/t5/Developer-Discussion/API-call-to-roles-collection-returning-empty-for-non-moderators/m-p/462829#M14239