I have references from several captions to the same footnote. This footnote is not referenced from text, only from captions. I've found the following approach working great, except that the footnote number also appears in the text area. Minimal example:
\documentclass[paper=a4,fleqn]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{figure}[!htbp]
\begin{center}
%\includegraphics[width=1.0\linewidth]{ima/myFirstPic}
\dots
\vspace*{0.1cm}
\caption[myFirstCaption]{myFirstCaption \footref{myFootnote}}
\end{center}
\end{figure}
\begin{figure}[!htbp]
\begin{center}
%\includegraphics[width=1.0\linewidth]{ima/mySecondPic}
\dots
\vspace*{0.1cm}
\caption[mySecondCaption]{mySecondCaption \footref{myFootnote}}
\end{center}
\end{figure}
\footnote{\label{myFootnote} myFootnoteText}
\end{document}
I tried {\let\thefootnote\relax\footnote{{\label{myFootnote} myFootnoteText}}} but this suppresses also the number in the footnote area (at the bottom of the page) which must be kept visible. So the question is: How do I suppress only the footnote number that appears in the text area?

\footnotemarkand\footnotetext? However, you have to take care to print the footnote on the correct page with such constructs, because floats can always float. Note also, that you should not usecenterenvironment inside a float but\centeringcommand, because environmentcenteradds additional (unwanted) vertical space. – cabohah Jan 07 '23 at 16:17\footnotemarkand\footnotetext, it did not work. The issue always was that the reference numbering is off. Do you have a working example of your idea with\footnotemarkand\footnotetext? – Rome Jan 07 '23 at 16:22