ContributionsMost RecentMost LikesSolutionsRe: Custom User Online Component DougS, I tried your code examples and now language switch works both for registered users and guests! Thanks a lot! Re: Custom User Online Component DougS DougS wrote: Finally, I believe the profile.language parameter only works for changing the language if the user is anonymous (not signed-in). ... Indeed! I couldn't even expect that it would work only for guests. Thank you for useful info and code. I'll try it out and come back to tell the result! Re: Custom User Online Component ClaudiusH, DougS, I'm really glad you guys are trying to help with my question! Thank you! :smileyhappy: ClaudiusH wrote: If I understand you correctly the language switching element is present on every page and you are looking for a way to make it work everywhere without landing the user back on the root community page after following a language switch link. You're absolutely right! DougS, thank you for the code. I'll check if it works. But before implementing it programmatically we can try to do it manually. I think it will be easier to understand if you try it on your own. Here is our community: club.volia.com. Language switching element is in the upper right corner of the page: On the main page we can easily switch language (even if you don't know Russian/Ukrainian, you can see how titles change :smileyhappy: ) If I understand you right here is what we should have after substituting language parameter after current page url: http://club.volia.com/t5/Internet/Vopros-otvet-po-WiFi/td-p/55225?profile.language=ru or http://club.volia.com/t5/Internet/Vopros-otvet-po-WiFi/td-p/55225?profile.language=uk The problem is that putting this in browser address bar, has no effect. I guess I just don't understand exactly how it works. Maybe not only profile.language parameter should be changed. Re: Custom User Online Component VarunGrazitti, thank you for the reply! Regardless of language, content is the same - only interface language changes. But I think it's a bit inconvenient to go back to the previous page manually. Is there some way to create a redirect after switching language? Custom User Online Component Hi all! Users of our community are able to view it in two languages. They can select language in profile settings and via the next element: <ul class="header__lingvs"> <li><a class="sw_lang" title="Russian" href="/?profile.language=ru">Rus</a></li> <li><a class="sw_lang" title="Ukrainian" href="/?profile.language=uk">Ukr</a></li> </ul> When user clicks on the one of these buttons, language changes, but user's being redirected to the main page of community, no matter on what page he was before. Adding the profile.language setting to any other page address has no effect - page just refreshes with with this setting in the end. Is it some way to switch language and stay on the current page? Thanks in advance, Yurii SolvedShow certain user data for all users Hi everyone! Due to our community purposes we need to display users' location for every user on profile page (by default only staff can see it) and in message author info block. I do know how to call this data but, but still can't put into default non-contract component "author" - only after it. Since I'm not very experienced, it's much complicated for me to create an extended custom component from nothing. <#assign messageAuthorId = env.context.message.author.id /> <#assign profileLocation= restadmin("/users/id/${messageAuthorId}/profiles/name/location").value /> <div class="lia-message-author-location">Location: <span class="profileLocation">${profileLocation}</span> </div> Any suggestions how can I make it visible for all our users? Thanks in advance, Yurii. SolvedDisplay the same studio component multiple times Hi, Is there any way to display the same studio component multiple times with all its styles? I need to display <@component id="common.widget.user-navigation-combine"/> twice on the page: in common-header and in custom sticky header (created via wrapper). Unfortunately, it can be displayed correctly only once, because HTML/CSS allows to use component's id style only once on the page. Here is how it should be shown: Thanks in advance, Yurii.