ContributionsMost RecentMost LikesSolutionsText key error on save I am trying to save a text key in the text editor. It is giving me an error "This value must be shorter than 1,000,000 characters in length." I am trying to save the text key as "form.SearchForm.field.messageSearchField.placeholder = Rechercher" (in language= French). What might be causing the error? And how I resolve it? Overriding a component not allowed error I am trying to override the search form (common.widget.search-form) component, but there is error saying "There is already a component with this name. Please enter another name." i'm naming the component as "common.widget.search-form@override". There is no component with the same name, I have checked multiple times. What could be a reason for this error? Text keys with values depending on the page ID Hey, I want to fetch the node id/title of the page and set the text key for "form.SearchForm.field.messageSearchField.placeholder" (Search form). I basically want each page to show "Search ${page title} Community" using the text key. How do I use Freemarker code to set the text key value? Navigating through moderator posts in a thread I want to navigate through a thread and read only moderator commented posts in it. I want a list of all the moderator posts and move to the next post in that list using a button. Is there any OOTB which facilitates this? Re: Setting skin from page initialization script VikasB I did solve the issue later on. I had been using the skin id instead of the skin name. Thanks Setting skin from page initialization scriptI'm trying to set skin from the page initialization script for a particular page but it doesn't seem to work. Below is the code I'm trying to use: <#if page.name == "CommunityPage"> ${skin.set("skin_name")}Solved