I am trying to get rid of the (n.d) that appears in the citations.
Below is my MWP.
\documentclass[sigconf]{acmart}
\usepackage{filecontents}
\begin{filecontents}{ref.bib}
@misc{google,
title={Google},
howpublished={\url{https://google.com}},
author={Google}
}
\end{filecontents}
\begin{document}
Something to cite~\cite{google}.
\bibliographystyle{ACM-Reference-Format}
\bibliography{ref.bib}
\end{document}
I tried to include the following code, for example, from this answer just before \begin{document}. However, I get Undefined control sequence error for \DeclareLabeldate and \field.
\DeclareLabeldate[online]{%
\field{date}
\field{year}
\field{eventdate}
\field{origdate}
\field{urldate}
}
This discussion hints that it may require something more to be tweaked?
