ContributionsMost RecentMost LikesSolutionsRe: Possible to Cache the Output of an Endpoint? Hi keithkelly , you could definitely do this. You have a couple of options, appcache, usercache, and potentially component caching. appcache is great for this but keep security in mind. The cached data should only be accessed by your endpoint and make sure that your endpoint has user and role checks to prevent unauthorised access to this information. Give your data a key that won't be used by another developer for another purpose so that you don't inadvertently expose the KPI data. You can store structured data like a JSON object (in freemarker, it's called a "hashmap" and you can use the json methods of the utils Freemarker context object to convert the hashmap to a string to serialize the data out to the response stream for the caller. Take a look a the appcache context object documentation, the utils context object documentation, and the component caching documentation. You should be able to put something together based on this information. Good luck! Re: How to refer editor(post page) in custom page Hi radhika_kundana , in order to get a message editor form workin on a custom page, you will need some help from the Khoros Professional Services team. There isn't a way to do what you're aiming for here without some custom backend work. Let me know if you are interested in an engagement with Professional Services to make this happen. Re: OneTrust Cookies Consent abeshey_bpc , that's no problem. There are a couple of different ways that you can differentiate between stage and prod and ensure that the correct code snippet is used in each case. The simplest approach would be something like this: <#if config.getString("phase", "prod") == "stage"> ... YOUR STAGE ONE TRUST SNIPPET HERE ... <#else> ... YOUR PROD ONE TRUST SNIPPET HERE ... </#if> Re: OneTrust Cookies Consent Hi all, so most of the work is done in One Trust. Your One Trust account representative should be able to help you with the configurations that need to happen in One Trust. A One Trust javascript script is then added to the community. You can then do some light styling on the One Trust banner to match your brand guidelines. Re: page.content.head.setTitle not working Lindsey , I don't think there's anyway to get node specific info in text properties. You can only use custom page quilts to make "node" specific text keys. You can't use dynamic data in the key files.