ContributionsMost RecentMost LikesSolutionsRe: What Components Cant be Edited ? The new component generates once you enable new discussion styles in your community and the component generated are related to specific discussion style. Re: What Components Cant be Edited ? Hi eddie-at-move, You may find list of component displayed on left side of page tab in Studio console. There are few non-contract component eg. MessageList which are also non editable. If required you may Override your custom component. Please let me know if you need more information Regards, Vishwajit Re: Problem in using studio page as an iframe on other domain stever, Continuation to the above question raise byratnesh. What if the X-Frame-Options: SAMEORIGIN Do we need to raise a case with support team to get this configuration issue resolved. Can you please provide more details regarding this configurations. As we are not able to call the community page in the iframe of another domain. Re: Error responses on valid Thread Id's aheffernan, Did you tried a call with specific board id and then calling a thread or api call provided below:- /restapi/vc / messages / id / [id] / thread I think this may resolve your error. If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution." Re: Delete post deatials in the community Hi AbhishekIlindra, Did you set the correct date range to get the details. You can have the subject line, author name and the board name from where the article has been deleted. Are you looking for theentire details related to the thread deleted? Regards, Vishwajit Shinde If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution." Re: Delete post deatials in the community Hi AbhishekIlindra, You may find "Audit logs" where you can get all the details related to post deleted. Navigation:- Admin - > MOD TOOLS - > Audit Logs. Regards, Vishwajit Shinde. If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution." Re: Delete post deatials in the community Hi AbhishekIlindra, Did you trybelow api call to get the details regarding deleted post. API Call:- /restapi/vc/messages/id/[id]/deleted Regards, Vishwajit Shinde. If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution." Re: Forum Thread Layout Hi skylinegtr, You need to change variable name which is correct, as if you consider example provided by mahesh_revanwer the looping is done with "msg" variable used. Considering this variable you can write a code as follows:- <#assign replyCount = rest("${msg.thread.@href}/replies/count").value> ${replyCount} As the "topic" variable is not present in your code error got generated. Regards, Vishwajit Shinde If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution." Re: Forum Thread Layout Hi skylinegtr, 1. Please try below rest api to get the replies count continue to above rest call used by mahesh_revanvar:- <#assign replyCount = rest("${topic.thread.@href}/replies/count").value> ${replyCount} 2. The way you are using the code to generate is seems to be correct. Please find the teaser text present in the message. If it is present it should generate the string to be displayed in the browser. Regards, Vishwajit Shinde. If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution." Re: Word Count component domladden, Did you tried Regex patterns to remove the tags from the body contained so that you can have the bunch of body contained. Please try below regex pattern:- ?replace("</?[^>]*(>|$)|&(nbsp;?|#?[0-9A-Za-z]*$)", " ", "r")?replace("\\s+", " ", "r") This will help you to remove all HTML tags from the body. Regards, Vishwajit Shinde. If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution."