[Tex/LaTex] Removing page numbers after references

back-referencingbibliographieshyperref

I'm having a bit of trouble trying to remove the page number hyperlinks displayed after references in the bibliography, for example:

[39] E. Economou, Green's Functions in Quantum Physics. Springer, 3rd
ed., 2006. 7, 26

I found on a previous answer that the usual culprit is \usepackage{hyperref}

in the preamble, but after disabling this I still have the problem. I can't see any other reference package that might be enabling this option, but here is the preamble and the bit where I insert my refernces. I also tried changing reference styles but this didn't remove the page numbers either!

\documentclass[oneside,12pt]{Latex/Classes/PhDthesisPSnPDF}

\include{Latex/Macros/MacroFile1}

\usepackage{enumerate}  
\usepackage{amsmath}    
\usepackage[T1]{fontenc}
\usepackage{graphicx}   
%\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{cancel}
\graphicspath{{./Images/}}
\usepackage{float}
\usepackage{subfigure}
\usepackage{sidecap}
\usepackage{caption}

…..

\bibliographystyle{ieeetr}
\bibliography{references}
\end{document}

Best Answer

Quoting the OP:

PROBLEM FIXED

The problem was found within the custom class I was using, {Latex/Classes/PhDthesisPSnPDF} as I was using the CUEDThesisPSnPDF template for my thesis. Within the class I searched for pagebackref in the hyperref package and just added "= false", so it now reads pagebackref = false,