You can use a Boolean story variable to track if something has happened, like finding a Grocery Store.
1. Use the <<set>> macro within your projects StoryInit special passage to initialise your story variable to false, this value represents that fact that the Reader hasn't found the Grocery Store yet.
<<set $foundGrocery to false>>
2. In your Explore passage you will use another <<set>> macro to change the story variable's value to true to indicate that the Grocery Story has been found.
You look around the town and find the Grocery Store. <<set $foundGrocery to true>>
[[Return to the town square|Town]]
3. In your Town passage you will use an <<if>> macro to check the current value of the story variable and conditionally show the link to the Grocery Store based on whether it has been found or not.
You arrive at the town square and wonder what to do next.
[[Go exploring|Explore]]
\<<if $foundGrocery>><br>[[Visit the Grocery Store.|Grocery Store]]<</if>>