I am currently working on an e-book using Latex and Biber. The package that I am using for footnotes is the biblatex-chicago package.
I can successfully link to a footnote from, say, a paragraph, but I would like to be able to click the actual footnote and return to the original place, creating a back-reference. I have viewed some of the other posts related to similar topics, but none that seem to work with the biblatex-chicago package, with which I use \autocite to create my foot notes.
MWE
\documentclass[10pt, letterpaper]{book}
\usepackage{palatino}
\usepackage[notes,backend=biber]{biblatex-chicago}
\addbibresource{mweBib.bib}
\usepackage{footnotebackref}
\usepackage{tocloft}
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\date{} \let\cleardoublepage\clearpage
\usepackage{hyperref}
\usepackage{color}
\hypersetup{colorlinks=true, linkcolor=blue, linktoc=all}
\begin{document}
This is a test for footnotebackref.\autocite[100]{test}
\printbibliography
\end{document}
I hope that I have stated my problem clearly. Any help is greatly appreciated!

footnotebackreffrom Footnote backreference with hyperref works like a charm here, even withbiblatex-chicago's footnote citations. Can you prepare a MWE of how it didn't work for you? – moewe Aug 01 '15 at 17:44\begin{document} This is a test for footnotebackref.\autocite[100]{test}
\printbibliography] \end{document}` Am I missing something with footnotebackref?
– macintoshJake Aug 02 '15 at 19:05numberlinked=trueis somehow impaired bybiblatexpatching the\footnotecommands, if you use\usepackage[symbol=$\wedge$]{footnotebackref}it works, though. Maybe I can get around to finding a work-around for the numberlink option later... – moewe Aug 02 '15 at 20:05biblatexpatching\footnotecommands, it wasbiblatex-chicago's redefining the look of the footnotes.... I really didn't expect that. – moewe Aug 03 '15 at 05:17