ContributionsMost RecentMost LikesSolutionsRe: Is there some support for push notifications? HI MarcosR , unfortunately i am not able to open the provided link ( maybe this is a Lithium restricted repo ), but when i am looking into the rep name (mpushy) it seems that this is a repo for push delivery via pushy ( external push provider). That is what i meant in my previous post: 1. look for a vendor of push notification --> here it seems to be pushy 2. try to hook into the notificationEvents ( which shoud be the main challenge here) From my perspective it is the only realistic way without the need of Lithium Product Development in case the eventNotification path is working and fitting to ypur requirements. MyTestSnippet{ console.log("Test"); } Re: Khoros Communities and Khoros Care Cookies Datasheet Hi guys, although i have already created a dedicated support ticket, i guess this could be also relevant for the community: We are facing issues in regards to the "Share"-Button of Khoros. As you might already know, Khoros is using AddThis functionality for sharing articles and posts. AddThis already updated there solution in regards to being compliant with the GDPR ruleset and once a user is clicking they explicit consent of a user is asked for. The Problem: Every Khoros Layout including the Share Button component will already set AddThis related cookies, before the user is clicking on the share-Button and before the user has any chance to give consent. From a GDPR perspective this is really critical. To give you a proof that the mentioned cookies are not related to one of our communities, here is a link for an article within this Khoros community: https://community.khoros.com/t5/Khoros-Community-Discussions/NPS-other-survey-methodology/td-p/564408 When visiting the mentioned url, you can easily find the cookies __atuvc and __atuvs belonging to AddThis and before you clicked any share button. Both mentioned cookies are also not listed here in the cookie policy, as it is a cookie set by AddThis not directly via Khoros. But it will be delivered via the Khoros pages and this makes it again critical. STARFLEET Re: Retrieve a location the request came from. Hi csolis214 , unfortunately not. The information you mentioned is not populated to the request object within the endpoint. Re: Load a really big file for reading csolis214 , your welcome. As you mentioned that it is a very big file, lease have in mind whether timeout issues can happen, but as far as i know all stuff within assets is provided in CDN so hopefully this will not cause issues like that. And aslo dont forget tosue somehow an ideal way how you can reuse the readbuffer within the endpoint, in cases that the file is too big it could endup in memory errors. I guress you have to test it for your own and see what is working and what not 🙂 Re: Load a really big file for reading Hi csolis214 , i guess you will add it into the asset foder in web > html. I have not enough information whether the mentioned file is something which is dynamically created. In case not, why are you not uploading it directly into the asset folder via Admin Dashboard. Regardless which way you use, all docuemtns within the assets folder can be referenced via url or in the freemarker code via context object asset: https://freemarker-docs-portal.lithium.com/refer/contextObjects#asset Hope this helps. Re: community experience in other application Hi sejalnaidu , although your description is not 100%clear, there are several possibilities for integration purposes: - i would recommend using REST API to do integration if the available api methods are fitting to ypur requirements. Yiu can find the API doucumentation for API V1 here: https://community.khoros.com/t5/Developer-Documentation/bd-p/dev-doc-portal?section=commv1 For V2 here: https://community.khoros.com/t5/Developer-Documentation/bd-p/dev-doc-portal?section=commv2 There is also somehow a Activecast integration possibility but i would still recommend the API way. Re: Disable Float functionality Hi KevinSaquing , if you mean the context menu items like "float post" and so, yes you can deactivate and control them via the permission settings for your roles. Re: Is there some support for push notifications? Hi MarcosR , as far as i know, there are no endpoints for push notifications and the system is not delivering any push notification. If Lithium Product will not implement this kind of feature, the only way i can see is the following: 1. look for a vendor for push notification 2. hook into the notificationEvents to trigger push notification via your vendor, e.g. https://community.khoros.com/t5/Developer-Documentation/bd-p/dev-doc-portal?section=commv1&branch=EventSubscription Re: Endpoint Access error in Production. Hi Suchith , it could be that you have not whitelisted the HTTP client domain. You have to whitelist the caller domain for the http client here: ADMIN DASHBOARD > SYSTEM > HTTP Client Here you will find an input field called "Allowed domain names", where you can enter the http client domain. Hope this helps. Re: Change the position of reply/ pagination kudos in Article Pages prashanthkavya please be aware of the fact, that in some cases it is not so easy to restructure stuff, especially if the elements are encapsulated within one component, e.g. assume Share and Reply button are part of one out-of-the-box component, than you cannot restructure it and sometimes it is also hard to create new components. It is hard that we are not able to extend or customize existing components, in some case you even have no access to the code of the existing component and in cases you want to create a similar one with some minor custom stuff, you have to reinvent the wheeel again and again .. Before restructring please check whther the elements you are tryin to restructure are encapsulated within one component or not ... in cases they are you can only move the compoent in total ... a workaround for restrucring elements encapsulated within one component could be the usage of JQUERY or similar DOM-Manipiulators ...