I am designing a latex template for presentation slides for my company. I use beamer class.
I made the following codes to show a footline on every slide. It is a image on the left, and some words on the right, and the words and image are aligned in the center. However, I want to just remove the image in the title slide.
I have made the following codes
\setbeamertemplate{footline}{%
\ifnum\insertframenumber=1
%
\else
\includegraphics[align=c, height=1.5cm]{sim-ci-logo-2.png}%
\fi
\hfill%
\usebeamercolor[fg]{myfootlinetext}
Company confidential. \textcopyright\, 2018 All rights reserved.\hspace*{1em}
\insertdate{}\hspace*{2em}
\insertframenumber\kern1em
}
However, it does not work properly. In the title page, the image is gone, but the words moved to the bottom edge. See the two screenshots below:
This is the title slide's footline, where the words moved to the bottom edge
This is the normal slide's footline.

Do you know how to keep the words in the title slide in the same position as other slides? Thanks in advance.
Note that I have used \ifnum\insertframenumber=1, assuming title slide is always the first slide. As
@samcarter pointed out How to make the end slide use the same background as title page, while the normal slide use different background?, it is usually a bad idea to make such an assumption, but I do not know how to make it. Any suggestion on that is also appreciated.
