How can I hide just one link in a document? (I'd like to be able to create a "secret link" that is like an Easter egg that readers can find if they look carefully.)
\documentclass{article}
\usepackage[colorlinks=true,urlcolor=blue]{hyperref}
\begin{document}
\href{https://www.google.com/}{This link is colored blue.}
\hypersetup{hidelinks}
\href{https://www.google.com/}{This is a hidden link, not colored.}
\hypersetup{hidelinks = false} % This doesn't work
\href{https://www.google.com/}{I want this link to not be hidden, like the first one.}
\end{document}