I am asked to produce a bibliography in authoryear style with only the first author in label. In case of an ambitious label, a letter is appended to the year. This can easily be produced with the following code (taken from Creating a bibliography with fixed indention and authoryear labels using biblatex and biber):
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[style=ext-authoryear, backend=biber, maxcitenames=1, uniquename=false, uniquelist=false, introcite=label, dashed=false]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{Shepard2001a,
author = {Shepard, Frank and Fisher, John},
year = {2001},
title = {Livestock management},
}
@book{Shepard2001b,
author = {Shepard, Frank and Farmer, Boris},
year = {2001},
title = {On food supplies},
}
\end{filecontents*}
\addbibresource{\jobname.bib} % if you’re using biblatex\addbibresource{biblatex-examples.bib}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\setlength{\introcitewidth}{6em}
\begin{document}
\cite{Shepard2001a, Shepard2001b}
\printbibliography
\end{document}
As you can see, I am using ext-authoryear from biblatex-ext with introcite=label.
This is good, except that in the bibliography entry the letter appended to the year should be removed. I have marked the 'offending' letter with a red line. That is: I need the letter in the label but not in the bibliography entry itself. An entry for the MWE should look like that:
Shepard et al. 2001a
Shepard, Frank and Boris Farmer (2001), ...
I could not figure out, where to change that.




mergedate=maximumwhile the default (which the OP is using because they haven't defined anything else) would be the code frommergedate=compact. In case you choose the code for the appropriatemergedateone only needs to change thedate+extradatebibmacro and not the other two. Last but not least we probably want to replace the remaining\printlabeldateextrawith\printlabeldateas well. – moewe Aug 16 '19 at 12:25