My file must be compiled by XeLateX and its footnotes should be sorted in two columns in each page. So I use this code in the preamble:
\documentclass{article}
\usepackage[extrafootnotefeatures]{xepersian}
\twocolumnfootnotes
%_____Making special format for numbers of footnotes
\makeatletter
\renewcommand\@makefntext[1]{%
\hspace*{-1em}
\parindent 0em
\noindent
\hb@xt@ 1.8em{\hss
.\@thefnmark }
#1}
\makeatother
%___________
\begin{document}
\lr{hi}\LTRfootnote{Hia} \lr{hi}\LTRfootnote{Hib} \lr{hi}\LTRfootnote{Hic} \lr{hi}\LTRfootnote{Hid}
\end{document}
But the problem is that my special format for numbers of footnotes does not work at all. On the other hand, if I delete extrafootnotefeatures option, then the alignment of footnote columns will be wrong (It will become right to left, but must be left to right)!
So the question is how can I have two-column footnotes and have the first footnote appear in the left column?

dblfnote, but it ruins the alignment of columns. I want the first footnote to appear in left column, not the right one. – MEDVIS Jan 24 '16 at 21:05