[Tex/LaTex] Footer on EVERY page (including chapter*’s/ chapter’s first page

fancyhdrheader-footer

I have the following problem: I want to have a footer on every page (even on the first pages of a chapter* or chapter, the tableofcontents, the bibliography as well as the acronyms page. I achieved to get footers on every second and following pages of a chapter using the post I found on stackoverflow. Is there a simple possibility to get the footer on really EVERY page?

\documentclass[a4paper, 12pt, DIV=calc, headings=small]{scrreprt}

    \usepackage{lipsum}
    \usepackage{fancyhdr}

    %Define footers
    \fancypagestyle{Whatever}{
      \fancyhf{} %Clear header/footer
      \renewcommand{\headrulewidth}{0pt} %No line in header area
      \fancyfoot[C]{Whatever \thepage} %Centered footer
    }

    \pagestyle{Whatever} %Set page style.

    \begin{document}
    \chapter*{Test1}
    \lipsum[1-8] % Filler Text

    \chapter*{Test2}
    \lipsum[1-8] % Filler Text
    \end{document}

Best Answer

Whole solution (Thank goes to Ulrike Fischer):

\documentclass[a4paper, 12pt, DIV=calc, headings=small]{scrreprt}

    \usepackage{lipsum}
    \usepackage{fancyhdr}

    %Define footers
    \fancypagestyle{Whatever}{
      \fancyhf{} %Clear header/footer
      \renewcommand{\headrulewidth}{0pt} %No line in header area
      \fancyfoot[C]{Whatever \thepage} %Centered footer
    }

    %Set page style
    \pagestyle{Whatever} %Set page style.
    \renewcommand\chapterpagestyle{Whatever} %New command

    \begin{document}
    \chapter*{Test1}
    \lipsum[1-8] % Filler Text

    \chapter*{Test2}
    \lipsum[1-8] % Filler Text
    \end{document}
Related Question