When using \insertshorttitle in the footline (or elsewhere) it is automatically inserted as a click-able link.
Therefore it is for example typesetted in a different colour. (marked with a red circle in the image, where the title appears black instead of blue)
How can this behaviour be disabled?
\documentclass{beamer}
\setbeamertemplate{footline}{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
}%
\vskip0pt%
}
\title{test}
\author{Einstein}
\begin{document}
\begin{frame}
test
\end{frame}
\end{document}


\hypersetup{colorlinks=true, linkcolor=red}. But in combination with @Werners anwser it gives the desired result. A shame one could not accept multiple answers!! – samcarter_is_at_topanswers.xyz Jun 05 '14 at 18:06\hypersetup{hidelinks}, see updated answer. – Heiko Oberdiek Jun 05 '14 at 18:27