ContributionsMost RecentMost LikesSolutionsRe: REST API and users Hi, Catherine. Getting the number of posts that are new is actually done by getting the total number of posts for a given node (board, category, etc.), then subtracting the number of posts the user has read. It's a bit round-about, but it gets the job done. Hopefully in the future, we'll have a method that merges both operations into a single REST call. The two calls might look like this: http://community.company.com/company/restapi/vc/boards/id/myboard/posts/count http://community.company.com/company/restapi/vc/boards/id/myboard/messages/read/count One thing to note about this method for getting unread posts, however, is that it will not work at the community level. While you can get the number of posts at the community level, you cannot get the number of posts the user has read. That call is restricted to categories, and any leaf nodes (boards, blogs, idea exchanges, etc.). I've run into this issue in the past, but my development team assures me it is not an insignificant addition, unfortunately. Hope that helps, Adam Re: Free Marker: Any way to know if MyProfilePage was saved. Glad to be of service! You're right, it would be great to get these documents on the Lithosphere. So great, in fact, that it's one of the tasks currently assigned to our platform team! While I don't have an ETA, do know that it will be coming. I've already been asked to write a few articles about customization, and the "activity" object will be one of the first topics addressed. Re: Free Marker: Any way to know if MyProfilePage was saved. Hi, telpochyaotl. As of version 9.14, there is a FreeMarker variable called "activity.results." This variable contains keys related to both user and message events. For instance, after updating a user's settings, you can check the activity.results variable like so: <#if activity.results.name.UserUpdated??> Success! Your settings have been updated. </#if> Hope that helps! Edit: I originally gave the wrong information in this reply, but have edited this post to correct the error. Re: Free Marker: Any way to know if MyProfilePage was saved. My apologies. You'll need to reference the results as so: <#if activity.results.name.UserUpdated??> ... </#if> Sorry for the confusion! Re: How to call 'search form? Hi, Cleo. To embed the search form in your wrapper's page header section, add the following line: <@component id="common.widget.search-form" /> Hope that helps! Re: Page Title from FreeMarker Hi, David. There is, but it depends on the page. For example, if you're on a board/blog/idea page, a category page or the community homepage, you can use coreNode.title to get the name. If you're on a message, however, you'll need to use page.context.thread.topicMessage.subject. Hope that helps!