froot Posted February 2, 2024 Share Posted February 2, 2024 what's the best way to return the user's current language specific URL segment? I mean for example /en/ or /de/ depending on the user's active language? Link to comment Share on other sites More sharing options...
monollonom Posted February 3, 2024 Share Posted February 3, 2024 If you’re talking about the current page you could go with https://processwire.com/api/ref/wire-input/canonical-url/ Link to comment Share on other sites More sharing options...
froot Posted February 3, 2024 Author Share Posted February 3, 2024 I meant only return /de/ or /en/, is there no native method to do that? Link to comment Share on other sites More sharing options...
monollonom Posted February 3, 2024 Share Posted February 3, 2024 Then you need to look for the home’s name in the user’s language, either $pages->get(1)->getLanguageValue($user->language, "name"); or $pages->get(1)->localName($user->language); 3 Link to comment Share on other sites More sharing options...
froot Posted February 3, 2024 Author Share Posted February 3, 2024 [SOLVED] works! thanks! 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now