I am using hyperref.sty to create hyperlinks for TOC, web url, but I need to switch off all the cross links like \ref, \cite etc. Is this possible to fix and the MWE is follows:
\documentclass{book}
\usepackage{amsmath}
\usepackage[bookmarksopenlevel=1,dvips,bookmarks=true,colorlinks=true,breaklinks,linkcolor=blue,citecolor=blue,urlcolor=blue]{hyperref}%
\begin{document}
\tableofcontents
\chapter{Test}\label{chap1}
\section{Heading level}\label{sec1}
Eq. \ref{eq1}
\begin{align}
a+b=c\label{eq1}
\end{align}
\newpage
\chapter{Test}\label{chap2}
Chapter \ref{chap2}
\section{Heading level}\label{sec2}
Eq. \ref{eq2}
\begin{align}
a+b=c\label{eq2}
\end{align}
\end{document}
TOC and Bookmark and Web URL links should be enable and all the other links should be disable...
\refuse\ref*instead. To suppress hyperlinks for\citecommands you could define your own macro as discussed here: https://tex.stackexchange.com/q/118182/134144 – leandriis Nov 01 '17 at 12:42