My question is rather the opposite, since I want to remove the bolded part from a citation:
Xu, J., Benbasat, I., & Cenfetelli, R. T. (labelyearlabelmonthlabelday). “Integrating service quality with sys-tem and information quality: An empirical test in the e-service context,”MIS quarterly, 777–794. ( )(cit. on p.6).
This is the cls code which came with the template, perhaps you could point to where that is coming from:
\ProvidesFile{biblatex.cfg}
\DeclareNameAlias{sortname}{last-first}
% Put titles in quotes for most types
\DeclareFieldFormat
[online,article,inbook,incollection,inproceedings,thesis,unpublished,patent]
{title}{\mkbibquote{#1\addcomma}}
\DeclareFieldFormat
[book]
{title}{\mkbibemph{#1\addcomma}}
\DeclareFieldFormat
[inbook,incollection,inproceedings]
{booktitle}{\mkbibemph{#1\addcomma}}
% Attempted Fixes for ONLINE entries
\DefineBibliographyStrings{english}{%
url = {available online at},
}
\DeclareFieldFormat{url}{\bibstring{url}\space\url{#1}}
\DeclareFieldFormat{urldate}{\printtext{accessed}\space#1}
\renewbibmacro*{url+urldate}{%
\printtext[parens]{%
\printfield{url}\addsemicolon\space
\printurldate
}}
% Year formatting
\renewbibmacro*{date+extrayear}{%
\iffieldundef{\thefield{datelabelsource}year}
{}
{\printtext{%
\printfield{\thefield{datelabelsource}year}%
\printfield{extrayear}}}}%
\renewbibmacro*{date}{%
\iffieldundef{month}
{}
{\printdate}}%
\renewbibmacro*{issue+date}{%
\ifboolexpr{
test {\iffieldundef{issue}}
and
test {\iffieldundef{month}}
}
{}
{\printtext{%
\printfield{issue}%
\setunit*{\addspace}%
\printdate}}%
\newunit}
% Fix names
\DeclareNameAlias{sortname}{last-first}
\renewcommand*{\labelnamepunct}{\addperiod\space }
\renewcommand*{\finalnamedelim}{,\addspace and\addspace }
% Fix "in"
\renewbibmacro*{in:}{%
\printtext{%
in\space}}
% Gotta get rid of the "in" before journal title
\DeclareBibliographyDriver{article}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\usebibmacro{author/translator+others}%
\setunit{\labelnamepunct}\newblock
\usebibmacro{title}%
\newunit
\printlist{language}%
\newunit\newblock
\usebibmacro{byauthor}%
\newunit\newblock
\usebibmacro{bytranslator+others}%
\newunit\newblock
\printfield{version}%
\newunit\newblock
\usebibmacro{journal+issuetitle}%
\newunit
\usebibmacro{byeditor+others}%
\newunit
\usebibmacro{note+pages}%
\newunit\newblock
\iftoggle{bbx:isbn}
{\printfield{issn}}
{}%
\newunit\newblock
\usebibmacro{doi+eprint+url}%
\newunit\newblock
\usebibmacro{addendum+pubstate}%
\setunit{\bibpagerefpunct}\newblock
\usebibmacro{pageref}%
\newunit\newblock
\iftoggle{bbx:related}
{\usebibmacro{related:init}%
\usebibmacro{related}}
{}%
\usebibmacro{finentry}}
% Make (Volume:Issue)
\newbibmacro*{volume+number+eid}{%
\printtext[parens]{%
\printfield{volume}%
\setunit*{:}%
\printfield{number}}%
\setunit{\addcomma\space}%
\printfield{eid}}
% Fix editor
\renewbibmacro*{byeditor+others}{%
\ifnameundef{editor}
{}
{\printnames[byeditor]{editor}%
\setunit{\addspace}%
\printtext[parens]{\usebibmacro{apaeditorstrg}{editor}}%
% \usebibmacro{byeditor+othersstrg}%
\clearname{editor}%
\newunit}%
\usebibmacro{byeditorx}%
\usebibmacro{bytranslator+others}}
\newbibmacro*{apaeditorstrg}[1]{%
\iffieldundef{#1type}
{\ifthenelse{\value{#1}>1\OR\ifandothers{#1}}
{\bibstring{editors}}
{\bibstring{editor}}}
{\ifthenelse{\value{#1}>1\OR\ifandothers{#1}}
{\bibcpstring{type\thefield{#1type}s}}
{\bibcpstring{type\thefield{#1type}}}}}
% Fix appearance of , with name lists of two
\renewcommand*{\finalnamedelim}{%
\ifnumgreater{\value{liststop}}{2}{\finalandcomma}{}%
\addspace\bibstring{and}\space}
\endinput
biblatexwith thebackrefoption. – leandriis Feb 22 '19 at 21:28