I want only the year of the citation in blue, NOT everything like it its now.
LaTeX
\documentclass[a4paper,10pt]{article}
\usepackage{natbib}
\usepackage{apalike}
\usepackage{hyperref}
\hypersetup{
hidelinks=false,
colorlinks=true,
citecolor=blue
}
\begin{document}
This is an example of ... \citep{author1}.
\bibliographystyle{apalike}
\bibliography{Bibliography}
\end{document}
Bibliography.bib
@book{author1,
title={Book Title},
author={Author},
year={2014},
publisher={Publisher}
}

natbiborapalike, but not both. – Mico Jun 01 '21 at 11:33