Hallo
I have a website where some holistic Operator work together.
I have create a content type Operator-Article for any operator.
I also created a blog-view to show the articles of each single operator.
This view uses as the parameter the UID of the article author (operator).

For example fore the operator 70

http://www.sorgenteancona.it/it/blog/70

I also created a view to show tle operators list in a table:
Photo | Name (link to curriculum page) | Read its articles (links to the blog-view)

For create the links to the blog-view I use:
- Hidden Field "Created by" formatter Entity ID to get the UID
- A field create using Title using Re-writing results:
text: "Read its articles"
link path: /blog/{{ uid }}

If I login the view works correctly.
For exaplle a link is
http://www.sorgenteancona.it/it/blog/75

If I not login the token {{ uid }} is not render an any link is
http://www.sorgenteancona.it/it/blog/

For testing the wiew I show the Field "Created by" and when I login I see the UID (for example 75).

http://www.ecommunication.it/immagini-forum/operatori-login.png

If I not login I do not see anything

http://www.ecommunication.it/immagini-forum/operatori-logoff.png

how can I solve this problem and use the {{ uid }} even when I'm not logged in ?

Tanks