I am using the skak package in Overleaf to draw some chess boards. All works fine in the document, however upon compiling I receive the following warning:
This code gives the Warning:
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{verbatim}
\usepackage{skak}
\usepackage{diagram}
\newcommand\showboardsize[1][1]{\resizebox{#1 \textwidth}{!}{\showboard}}
\begin{document}
\begin{figure}
\centering
\newgame
\fenboard{r4r1k/p5Rp/1p3pb1/2P4N/2B5/P7/6PP/B2n2K1 w - - 0 1}
\showboardsize[.3]
\caption{\textbf{Mate in Three, White to move}\
Solution: {\wT}g8+, Rxg8, Bxf6+, Rg7, Bxg7#}
\label{fig:ch1}
\end{figure}
\end{document}
I have tried the following, but both did not work.
\RequirePackage{silence}
\WarningsOff[chessfss]
Also with loading chessfss before did not work.
\RequirePackage{chessfss}
\RequirePackage{silence}
\WarningsOff[chessfss]
Any idea if it is possible to deal with this warning, or how to hide warnings that cannot be dealt with, due to inaccessibility of the distribution in Overleaf?
Thanks!

\usepackage{chessfss}in a\documentclass{article}document does not appear to trigger the warning). The warning isn't issued just for fun, so before you suppress it, you should make sure you understand the implications of the warning. – moewe Aug 16 '20 at 12:10\usepackage{silence} \WarningsOff[chessfss] \usepackage{chessfss}seemed to work for me: https://gist.github.com/moewew/dfb6242a93c6710dac7571a9c7615eb7, so something more exciting seems to be going on in your document – moewe Aug 16 '20 at 12:16