ContributionsMost RecentMost LikesSolutionsRe: Mode parameter not working with @component include snaffle I guess you are right, I have observed that the 'mode' parameter only works when we are adding components directly into the quilt. Re: Add differents layout for the same page jpierlot You can create 3 different Custom Category Pages in the Studio (Studio > Page > New) as CategoryPage.Cat1, CategoryPage.Cat2 and so on. Then, you can map these to the respective Categories in the Admin section by selecting the respective category you wish to change the Layout for (Choose > Content > Custom Pages > Page Layout > Category Page). You can refer to the following article: https://community.lithium.com/t5/Developer-Knowledge-Base/Creating-a-custom-page-in-Studio/ta-p/6254 Re: Is it possible to programmatically mark all posts on a board prior to a defined date as read-only? Warren_Brill- You can set read_only true using API v2 as mentioned by ClaudiusH, since this is an API V2 call, so you need to call it outside of Lithium using OAuth 2.0 flow. There is a simple API v1 solution as well which can work on a custom component or endpoint. You need to make two calls. 1. select * from messages where board.id = 'boardID' and post_time < 'Specify msg Post_time' 2. You can loop through the fetched messages and pass the Message ID to the following : <#assign closemsgs = restadmin("/messages/id/${msgId}/readonly/set") /> Re: componentCacheSupport Null or missing Shivshankar You will need to get the caching enabled by Lithium Support. Re: Removing OOTB Labels component from OOTB topic-message component. pp_01 You can achieve this by : 1) Create a Custom ForumMessage Page and Map it to desired Forum Topic Page in the Admin section. 2) Create a Custom component and add it to the ForumMessage Page Quilt with the following conditions - <#if page.name != 'ForumTopicPage'> <@component id = 'labels' /> </#if> Re: Removing OOTB Labels component from OOTB topic-message component. pp_01 You can remove <labels> component from the ForumMessage Quilt. <community-URL>/t5/bizapps/bizappspage/tab/community%3Astudio%3Apage-editor?page=ForumMessage Re: Ability to disable login field in SSO Registration Form lmitaly - A workaround solution would be, 1. Get the SSO cookie value 2. Fill in the login name using JS 3. Hide the login filed Re: Common widget User slide out menu in wrapper? Meakii You can't include these components in the Header Wrapper, you need to Create a Custom component with the code provided to you in the previous post and then include it in the Header Quilt. Re: Common widget User slide out menu in wrapper? Meakii You can use the following Components : <#if user.anonymous> <@component id="common.widget.user-navigation-modern" /> <#else> <@component id="common.widget.slide-out-user-menu" /> </#if> Re: Read and write custom field dchou To set the value of the custom field for a message you can use the following API : <#assign restapi = restadmin("/messages/id/<messageID>/metadata/key/<custom_field_name>/set?value=<custom_field_value>") /> The following query can be used to view the value : select <custom_template_name> from messages where id = '<messageID>' P.S. Do confirm the Name of your Custom Field to be set from Lithium.