[Tex/LaTex] Removing eprint and eprinttype in citation notes

biblatexbibliographiesfootnotes

QUESTION EDITED: I am using the command \autocite for referencing using the note and bibliography style. The footnotes include eprint and eprinttype, how can I prevent that from occuring? Here is an examples of a footnote with parts in bold when I don't want that information:

  1. C. A. Bayly, “The Pre-History of ’Communalism’ ? Religious Conflict in India, 1700-1860,” Modern Asian Studies 19, no. 2 (January 1, 1985): 177–203, JSTOR: 312153.

my .tex file:

% arara: pdflatex: { synctex: on }
% arara: biber
% arara: pdflatex: { synctex: on }
% arara: pdflatex: { synctex: on }

\documentclass[11pt, oneside]{scrbook}

\usepackage[notes,strict,url=false,isbn=false,doi=false,backend=biber,autolang=other,bibencoding=inputenc]{biblatex-chicago}

\addbibresource{dissertation-ref.bib}

\begin{document}

This is an attempt at a minimal example.\autocite{Bayly1985PreHistory}

\end{document}

—My dissertation-ref.bib file:

@article{Bayly1985PreHistory,
  title = {The Pre-History of 'Communalism'? Religious Conflict in India, 1700-1860},
  volume = {19},
  rights = {Copyright © 1985 Cambridge University Press},
  issn = {0026-749X},
  shorttitle = {The Pre-History of 'Communalism'?},
  timestamp = {2015-03-18 11:14:32},
  eprinttype = {jstor},
  eprint = {312153},
  number = {2},
  journal = {Modern Asian Studies},
  author = {Bayly, C. A.},
  date = {1985-01-01},
  pages = {177--203},
  keywords = {communalism},
}

Best Answer

You can remove the eprint by using a \clearfield{eprint} command when you call a cite key. Namely, you need \AtEveryCitekey{\clearfield{eprint}}

\documentclass[11pt, oneside]{scrbook}

\usepackage[notes,strict,url=false,isbn=false,doi=false,backend=biber,autolang=other,bibencoding=inputenc]{biblatex-chicago}

\addbibresource{dissertation-ref.bib}

\AtEveryCitekey{\clearfield{eprint}}

\begin{document}

This is an attempt at a minimal example.\autocite{Bayly1985PreHistory}

\end{document} 

enter image description here