Cabeçalho em execução, mas sem número de página em determinada página com float

Cabeçalho em execução, mas sem número de página em determinada página com float

Quero suprimir o número da página na página de destino de um determinado carro flutuante - mas o cabeçalho deve aparecer lá.

Meu MWE mostra como suprimir o número da páginaecabeça correndo thisfloatpagestyle{empty}. Mas quero que o cabeçalho esteja na seção intitulada “Problema”.

Estou colocando \ofootno lugar errado? Ou existe uma solução mais limpa?

Obrigado!

MWE:

\documentclass[headings=optiontohead]{scrbook}
\usepackage{scrlayer-scrpage}
\pagestyle{headings}
\usepackage{floatpag}
\usepackage{graphicx}

\title{TestHeadingsFigure}
\author{Test}
\date{September 2020}
\begin{document}

\maketitle

\chapter{test}
\section{Everything is ok}

%Float appears on whole page, no running head and no page number (works)
\begin{figure}[p]
    \thisfloatpagestyle{empty}
    \includegraphics[height=0.3\textheight]{example-image-a}
    \caption{Test}
\end{figure}

\clearpage
\section{Problem}
\vfill
%Float appears on lower part of page, runnig head should exist, but page number should not exist (but it does!, so it's not working)
\begin{figure}[!h]
    \ofoot{}
    \thisfloatpagestyle{scrheadings}
        \includegraphics[width=\paperwidth]{example-image-a}\caption{Test}
\end{figure}

\clearpage
\section{It's ok}

%Float should be a normal float, runnig head and page number as on normal pages (works)
\begin{figure}[!h]
    \includegraphics{example-image-a}
    \caption{Test}
\end{figure}

\end{document}

O número da página com círculo vermelho não deveria estar lá

informação relacionada