ContributionsMost RecentMost LikesSolutionsRe: Custom Component Number of experts online Hi mcalcaterra I think you can improve your liql by ordering by last_visit_time to get a better change to find online users. Sadly we have not the constraint option for online_status so we have to use such a workaround. SELECT id, online_status, href FROM users WHERE roles.id='t:Administrator' ORDER BY last_visit_time DESC Re: Custom Components "Most Kudos From" and "Most Kudos To" VikasB Thanks for that idea. But this will not be solution for the ViewProfilePage context. What waldemarhelm is looking for is an solution to find those data in relation of an given user. With your LiQILs you will only be able to get those data in community context. Try this for example and you will always get only one object, the object of the given user. SELECT login,kudos_received.sum(weight) FROM users WHERE id = '47160' ORDER BY kudos_received.sum(weight) DESC Do you have any other ideas how to get the kudos_received and kudos_given values for an specific user? Re: Subscription API usage Hi, I have done the login call in an vuejs component like this: axios({ method: 'get', url: '/restapi/vc/authentication/sessions/login', params: { 'user.login': username, 'user.password': password, 'restapi.response_format': 'json' } }) .then(response => { if (response.data.response.status == 'success') { this.authToken = response.data.response.value.$; } }) Keep in mind that this will not work with users managed by an external IDP/Login system. Re: Create Custom Component Based On Roles Hi, maybe you can use something like this: <#switch role.name> <#case "Employee"> This will be processed if it is Employee <#break> <#case "Administrator"> This will be processed if it is Administrator <#break> <#case "Ambassador"> This will be processed if it is Ambassador <#break> <#default> This will be processed if it is neither </#switch> TinyMce/Editor on custom textarea Hi, I try to use the Khoros TinyMce on a custom textarea element in DOM. I already tried this by using 'window.tinymce.init' or 'window.tinymce.EditorManager.execCommand('mceAddEditor', true, target_element)'. Both commands ends into a vanilla tinymce instance without the Khoros editor settings. Did anyone figure out how to get the Khoros settings of the TinyMce to initiate a TinyMce on a custom field? The target is to add the textarea by JavaScript and initiate the TinyMce after that. Greetings Re: 2021 Customer Awards: Deutsche Telekom AG - Best-in-Class: Community Great story! Thanks for sharing! I keep my fingers crossed that this will be honored. Re: Load a lithium component with context via ajax Push. Are there any ideas how to do that? Re: Khoros Communities 19.9 Release Notes Hi, we found a bug within 19.9. Filter messages by status will be show no results. Of course we have already reported that issue to the support. Your able to reproduce that issue on that page, for example: https://community.khoros.com/t5/Khoros-Community-Ideas/idb-p/Lithium_Ideas/status-key/New We decided to skip the upgrade to 19.9, for that reason and wait for a fix.. Greetings Filter Messages by conversation/thread id Hi, is it possible to filter messages by its conversation.id? The following APIv2 Call dose not work: SELECT * FROM messages WHERE conversation.id = '4175846' The Response is: Invalid query syntax Is there an other way to get all replies of a conversation/thread? Greetings Re: How to Display Node Avatars? Hi Parshant , thanks for the quick response. I already tried this path but I get this error. Maybe I did something wrong? I already double checked the avatar on that node. REST Error: path="https://community.url.com/community-name/restapi/vc/categories/id/Programm-Bereiche/avatar?restapi.response_style=view" status="error" code="501" message="Unknown path element at node 'category'." Greetings Steffen