To the answer to question Is it possible to reduce the height of the frame title box in beamer? : If I do so, the frame subtitle disappears. I guessed that only frametitle will be affected. Am I wrong?
And also
\setbeamertemplate{framesubtitle}{%
\nointerlineskip%
\begin{beamercolorbox}[wd=\paperwidth,ht=2.0ex,dp=0.6ex]{framesubtitle}
\hspace*{1ex}\insertsubsection: \insertframesubtitle%
\end{beamercolorbox}%
}
is not effective.
\documentclass{beamer}
\usetheme[hideothersubsections] {Goettingen}
\usecolortheme{spruce}
\setbeamertemplate{frametitle}{%
\nointerlineskip%
\begin{beamercolorbox}[wd=\paperwidth,ht=6.5ex,dp=0.6ex]{frametitle}
\hspace*{1ex}\insertframetitle%
\end{beamercolorbox}%
}
\begin{document}
\section{Sec one}
\subsection{OneOne}
\begin{frame}{Frame Number 1}{Frame 1}
{1}
\end{frame}
\subsection{OneTwo}
\begin{frame}{Frame Number 2}
{Frame 2}
{2}
\end{frame}
\section{Sec two}
\subsection{TwoOne}
\begin{frame}{Frame Number 3}
{Frame 3}
{3}
\end{frame}
\end{document}

frametitletemplate does not include the frame subtitle. The frame subtitle is inserted with the macro\insertframesubtitle. – user94293 Aug 10 '16 at 17:05