[Tex/LaTex] How to cite website with mdpi template using bibtex

bibliographiesbibtexmdpipdftextexmaker

I'm trying to cite a website using pdflatex, better-bibtex, zotero and texmaker.
Citations of articles are working like charm, but I get an error with the citation of a websites:

Warning: Citation `xxx' on page y undefined on input line

The automatically create bibtex entry from zotero is the following:

@misc{ogredevelopmentteamOGREOpenSource2019,
  title = {{{OGRE}} - {{Open Source 3D Graphics Engine}}},
  language = {en-US},
  journal = {OGRE - Open Source 3D Graphics Engine},
  howpublished = {https://www.ogre3d.org/},
  author = {{Ogre Development Team}},
  year = {2019},
}

I'm loading my references like this:

\bibliography{./Bibliography/references}

And I'm using the following document class:

\documentclass[journal, article, submit, moreauthors, pdftex, atmosphere]{Definitions/mdpi}

In my text I'm citing the website like this:

\citep{ogredevelopmentteamOGREOpenSource2019}

And I'm building my whole document like this:

PdfLatex + Bibtex + PdfLatex (x2) + Show PDF

All other citations are working..

Best Answer

The entry type for websites defined in mdpi.bst is www. Your example would look like this:

@www{ogredevelopmentteamOGREOpenSource2019,
    author = {{Ogre Development Team}}, 
    title = {{{OGRE}} - {{Open Source 3D Graphics Engine}}},
    url = {https://www.ogre3d.org/},
    urldate = {xx.xx.2019},
}

(urldate is the date on which the website was accessed)