ContributionsMost RecentMost LikesSolutionsRe: Add link to case back to support emails Just noticed this myself – yes, please add the link to the case back, having to manually go to the case portal to review is a pain. Re: Lithium Community 18.9 Release Notes Following on to cjdinger's comment, it would help to know what version of TinyMCE Lithium is currently using to be able to track all the changes going into the 18.9 release. Thanks! Re: obtain the relative href of a custom page Perfect TariqHussain, just what I was looking for! Thanks! obtain the relative href of a custom page I'm trying to do set a class for styling the header navigation for a set of custom pages. How I do it for other categories is by the following code: <#if category.id == coreNode.id || isAncestor(category.id coreNode.ancestors) > <#assign category_highlight_class = " custom-menu-item-underline" /> </#if> However, this doesn't work for custom pages I've created. I thought I could do something similar, perhaps with the href parameter: <#if coreNode.href == "RELATIVE_URL") > <#assign category_highlight_class = " custom-menu-item-underline" /> </#if> But I can't get coreNode.href to return values for any page on the site, much less custom pages. I get the following error every time: The following has evaluated to null or missing: ==> coreNode.href Any ideas what I'm doing wrong? What is the best way to work with custom pages that don't have categories or standard nodes? SolvedRe: Possible to change page title tag on Studio pages? Thanks VikasB! After you post, I looked more at the documentation and found this: https://community.lithium.com/t5/Pages-and-layouts/Create-a-custom-page/ta-p/110639#textKeys I think that will be the answer I need. Much appreciated! Possible to change page title tag on Studio pages? When we create a custom landing page in Studio using Custom pages, the new page name doesn't allow certain characters like spaces. This is fine, but the Custom Page Name is used for the <title> tag of the page, and appears in the browser to visitors. When this is a product landing page, our Brand teams are very concerned that the product names are displayed correctly. Is there a way to replace the content of the <title> tag in a custom page, either in studio or programmatically? Re: 16.12 Release Notes Thank you! Was thinking there was something missing on my site - thanks for the quick correction KrisS and JohnD! Re: 16.12 Release Notes Excited by the new browser spell checker! However, the release notes say we need to enable Editor v2 in Studio > Features to use the new option. But my stage environment does not have "Editor" as one of the options in Studio > Features. Is this a error in documentation, or is there some issue in my staging environment? Re: Display users of a specific role in widget Thank you VarunGrazitti! That likely is exactly what I need - however, I'm a relative noob at styling the results in freemarker. You wouldn't know if the existing groups.widget.group-members-view component is something I can view and extract the freemarker code from? I'd love to simply replace the call for the group member list with the API call you provided (using the names of the new roles I'm creating) and benefit from a consistent widget style. Display users of a specific role in widget We have a category that only users of a certain rank/role can access. We used to have a group for this, but we added some interaction types (Ideas, Blogs, and TKB) so we changed it to a private category which worked better overall. However, one thing we miss about the group is the Group Member List (ID: groups.widget.group-members-view). We'd love to show a widget that displays a list of all users within the role that has access to the category, in the same style as the Group Member list. Is there a way to do this within Studio?