ContributionsMost RecentMost LikesSolutionsRe: API v2 Search doesn't work SuzieH Thanks for the quick response! That syntax is a bit unconventional, but it checks out on my end. I'll proceed with this approach. Re: API v2 Search doesn't work I'm having issues with the v2 search API too. In fact, it looks like Khoros is suffering the same bad results. If you use the new "Help Center" search in community admin, you probably won't find what you're looking for. I searched for "custom tags" and didn't receive any relevant results. Re: How We Built It: Access Signposting AndyK +1 for wanting to know more about settings list editor! Re: URL for My Profile without user.id I had this same need and I think I solved it with a custom endpoint. The endpoint creates a static URL that forwards logged in users to their profile page and redirects anonymous users through the login page. Try this: <#if !user.anonymous> <script> window.location.replace("${user.webUi.url}"); </script> <#else> <script> window.location.replace("${webUi.getUserLoginPageUrl("${http.request.url}")}"); </script> </#if> References: https://developer.khoros.com/khoroscommunitydevdocs/docs/context-object-index https://community.khoros.com/t5/Components-endpoints-and-the/About-endpoints/ta-p/108971 Re: How to create a 'subscribe to board' button PAULEM, the solution from Parshant worked for me. I'd recommend marking that one as the solution given the security risks associated with cike's reply. Re: Getting an error while generating the session key through URL?? abmpu Can you clarify what you mean by "native lithium user"? I'm experiencing the exact symptoms as you described above (the GET error and the POST error). This is a user account that's been working for a long time and suddenly stopped working. Customize search granularity options Does anyone have experience creating an @override component for the standard search? I need to customize the search granularity drop-down and it appears that the only way to do is to create a custom component. I've tried various JavaScript approaches that manipulate the granularity <select> menu directly, but there is more to it than that. For example, the LITHIUM.SearchForm() function is initialized with an object called nodesModel that contains the valid/expected granularity options, so when I tried to change the DOM with a custom option, the onchange handler code wouldn't recognize it as a valid option. If only I could copy the core search component, then customize it as an @override, but that's not an option. Is there a DIY solution here or is Lithium Professional Services my only option? SolvedRe: Setting search scope through parameters miikka I used the JavaScript from this post to customize the search for the Ideas section, to hide the granularity and restrict Ideas search just to Ideas. https://community.lithium.com/t5/Developer-Discussion/List-of-available-parameters-for-common-widget-search-form/m-p/234418/highlight/true#M10440 Re: Turn off the "You accepted a reply to a topic you are following as a solution!" email I'm curious about this too. I understand that any user can subscribe/follow a topic and when there's an accepted solution a notification should be sent. And isn't it true that the author of a topic is automatically subscribed to their own thread? I still wouldn't expect the author to be notified about an accepted solution immediately after they accept a solution on their own topic. I'm interested in knowing how to turn this off, too. The re-wording of the email is an OK work-around, but that messaging is better displayed directly in the page. Re: Subscribe Button ChiaraS You linked to this discussion (?)