I want to remove the dots after year. And also volume should be bold. How to do this?
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[
style=authoryear-ibid,
dashed=false,
giveninits
]{biblatex}
\renewcommand{\revsdnamepunct}{}
\renewrobustcmd{\bibinitperiod}{}
\begin{filecontents}{\jobname.bib}
@ARTICLE{ipab730bbib2,
author = {S. F. Edwards},
year = 1967,
title = {Statistical Mechanics With Topological Constraints: I},
journaltitle = {Proc. Phys. Soc.},
volume = {91},
pages = {513},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson,ipab730bbib2}
\printbibliography
\end{document}
