The Biblatex documentation says "the \fullcite command prints a verbose citation similar to the full bibliography entry". There are some differences though, and some questions/answers here about that, like this and this.
Here is another way they differ:
\documentclass{article}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
% Don't want to see "language" field.
\AtEveryBibitem{\clearlist{language}}
\begin{document}
\fullcite{cicero}
\printbibliography
\end{document}
This uses a suggested method of removing the language field. It is removed from the bibliography, but not from the \fullcite output. How can I get rid of it there as well?
The output:


\AtEveryCitekeyshould work, but a source map may be an alternative for clearing the field. – gusbrs Mar 15 '23 at 21:17