ContributionsMost RecentMost LikesSolutionsRe: How to get the total number of many kinds of views for a unique user? IE. Topic View... Does anyone know if the latest API provides those numbers? I tried using the v2 user endpoint, in the metric section only gives me something like this. "metrics": { "type": "user_metrics", "logins": 15, "minutes_online": 5, "posts": 2527, "private_messages_received": 4, "private_messages_sent": 0, "page_views": 64, "messages_read": 1 }, There are no Total Solutions Marked Accepted, the topic started number, and replies number. They combined it into "posts". Re: Unable to create post using API The attachment settings address this problem, but the behavior is a bit peculiar. Firstly, when using a custom extension, it doesn't function as expected. Secondly, by removing the custom extension, the problem is resolved. Thirdly, reintroducing the custom extension brings back proper functionality. Quite amusing, actually! Thank you so much Andrew! Unable to create post using API Hi, Recently, I got this error when trying to create a post using the API { "status": "error", "message": "This post contains content that is not permitted in the community. You must remove this content before publishing.", "data": { "type": "error_data", "code": 425, "developer_message": "", "more_info": "" }, "metadata": {} } I follow the API docs from here https://developer.khoros.com/khoroscommunitydevdocs/reference/create-a-message Your help in this matter would be greatly appreciated. SolvedRe: Adding link to post editor page This is my solution 1. Create a custom component with this script <div class="lia-support-model"> <div class="lia-quilt-column-side-content"> <div class="lia-panel lia-panel-standard"> <div class="lia-decoration-border"> <div class="lia-decoration-border-top"><div> </div></div> <div class="lia-decoration-border-content"><div><div class="lia-panel-heading-bar-wrapper"><div class="lia-panel-heading-bar"><span aria-level="3" role="heading" class="lia-panel-heading-bar-title">Inquiry service</span></div></div><div class="lia-panel-content-wrapper"><div class="lia-panel-content"><ul> <li><a href="#" target="_blank">LINK 1 HERE</a></li> <li><a href="#" target="_blank">LINK 2 HERE</a></li> </ul></div></div></div></div><div class="lia-decoration-border-bottom"><div> </div></div></div> </div> </div> </div> <@liaAddScript> ;(function ($) { $(".lia-quilt-column-alley.lia-quilt-column-alley-right").eq(1).append($(".lia-support-model")) })(LITHIUM.jQuery); </@liaAddScript> 2. Open the layout of PostPage, and add a custom component below the editor component Re: Adding link to post editor page Thanks, Andrew, your answer gives me an idea of how to solve it. Cheers! Adding link to post editor page Hello, Is there any way to add a new link in the sidebar of the post editor page? as far as I know, this component id name is "editor". We tried to override this component, but we don't know how to add a href link in the sidebar of this editor Solved