Hi guys,
Just implemented authentication based navigation menu (using liquid templates) for latest Adxportal version and found that "Sign In" link doesn't work.
Investigation show than recommended by Adx sitemarker "Login" does not exist anymore and the follow row returns null:
href="{{ sitemarkers['Login'].url | add_query:'returnurl', request.path_and_query }}"
Not a problem. Let's create the Login sitemarker and reference Sign In page. Oops. There is no more Sign In page and mvc controller figures out the sign in url based on used context and redirects it to different type of Sign In controllers.
If you're planning to go online and want to stick with liquid templates then the fast work around is to change it for Profile site marker. It will always redirect not authenticated user to Sign In page:
href="{{ sitemarkers['Profile'].url | add_query:'returnurl', request.path_and_query }}"
Does any body know how to fetch Sign In url with liquid templates ?
*This post is locked for comments