I have been using Stepehn's answer to this question to get a new footnote command with no numbering. However, I'd like to get no indentation on the footnote, also. That is: I want \blfootnote to have no numbers and no indentation (there are related questions out there, but none of them addresses this double issue together, I think). You can find a MWE below.
\documentclass{article}
\makeatletter
\def\blfootnote{\gdef\@thefnmark{}\@footnotetext}
\makeatother
\begin{document}
Hi there! I'm using whatsapp!\blfootnote{Though not much...}
\end{document}
How can I get what I desire? Thank you all very much in advance.
EDIT
Following the comments, I need to further specify the question. I need the non-indented and non-numbered blfootnotes only inside mdframed boxes. I never thought that could make a difference, and given the need for real minimal MWEs and maximum generality, I never specified it in my original question. I'm sorry. A new MWE would be:
\documentclass{article}
\usepackage{mdframed}
\makeatletter
\def\blfootnote{\gdef\@thefnmark{}\@footnotetext}
\makeatother
\begin{document}
\begin{mdframed}
Hi there! I'm using whatsapp\blfootnote{Though not much...}.
\end{mdframed}
Hi there! I'm using whatsapp\footnote{Though not much...}.
\end{document}
Hence, footnotes inside the box should be non-numbered and non-indented; those outside the box should remain as they are.
Thank you all again.




\usepackage[hang,flushmargin]{footmisc}. See chapter 1.10 and 1.11 in http://vesta.informatik.rwth-aachen.de/ftp/pub/mirror/ctan/macros/latex/contrib/footmisc/footmisc.pdf . – Bobyandbob May 09 '17 at 13:35\footnote, which should remain as it is with no changes). I only want those footnotes written using\blfootnoteto be non-indented. – EoDmnFOr3q May 09 '17 at 13:38