Following the answer to questions here and here, I have been using footnotes without a marker and without numbering throughout my publication, like in the MWE below. However, I would now like to align the numberless footnotes to the left; to the place where the numbers are aligned for those footnotes that have a marker. How do I accomplish this?
\documentclass[10pt, paper=156mm:235mm, BCOR=12mm, headings=optiontotocandhead, headings=openany]{scrbook}
\usepackage{kantlipsum}
\usepackage{xcolor}
\usepackage[T1]{fontenc}
\usepackage{Alegreya,AlegreyaSans}
\renewcommand*\oldstylenums[1]{{\AlegreyaOsF #1}}
\makeatletter
\def\blfootnote{\xdef@thefnmark{}@footnotetext}
\makeatother
\KOMAoptions{footnotes=multiple}
\interfootnotelinepenalty=10000
\deffootnote{1em}{1em}{\color{lightgray}\thefootnotemark\ \ }
\setkomafont{footnote}{\sffamily}
\renewcommand*{\raggeddictumtext}{\raggedleft}
\usepackage{etoolbox}
\makeatletter
\pretocmd{@schapter}{\setcounter{footnote}{0}}{}{}
\pretocmd{@chapter}{\setcounter{footnote}{0}}{}{}
\makeatother
\begin{document}
\chapter{Chapter one}
\kant[1-2]\blfootnote{\newline I would like the text of this numberless footnote to align all the way to the left. \newline}\footnote{So that the above numberless footnote aligns to where the number of this footnote aligns.}\kant[1]
\end{document}

\documentclassstatement is missing in your source code. – Heiko Theißen Jul 14 '22 at 10:54