Well, the simplest way to do this is
\date{}
which will use an empty date. But there will be an extra space.
I don't have your style file, so I'll use article as an example.
To find the definition of \maketitle, you could either execute \show\maketitle from an interactive TeX run, or you could look it up in the package file (with extension .cls for a class, and .sty for a style).
The latter is probably better because you get nicer formatting and indentation.
To get the path to a package, say, class article.cls, run kpsewhich article.cls at a terminal.
Thereafter, from article.cls (line 213):
\newcommand\maketitle{\par
\begingroup
\renewcommand\thefootnote{\@fnsymbol\c@footnote}%
\def\@makefnmark{\rlap{\@textsuperscript{\normalfont\@thefnmark}}}%
\long\def\@makefntext##1{\parindent 1em\noindent
\hb@xt@1.8em{%
\hss\@textsuperscript{\normalfont\@thefnmark}}##1}%
\if@twocolumn
\ifnum \col@number=\@ne
\@maketitle
\else
\twocolumn[\@maketitle]%
\fi
\else
\newpage
\global\@topnum\z@ % Prevents figures from going at top of page.
\@maketitle
\fi
\thispagestyle{plain}\@thanks
\endgroup
\setcounter{footnote}{0}%
\global\let\thanks\relax
\global\let\maketitle\relax
\global\let\@maketitle\relax
\global\let\@thanks\@empty
\global\let\@author\@empty
\global\let\@date\@empty
\global\let\@title\@empty
\global\let\title\relax
\global\let\author\relax
\global\let\date\relax
\global\let\and\relax
}
From this, we can see that it's the \@maketitle command that does the actual typesetting.
That's defined on the next line.
\def\@maketitle{%
\newpage
\null
\vskip 2em%
\begin{center}%
\let \footnote \thanks
{\LARGE \@title \par}%
\vskip 1.5em%
{\large
\lineskip .5em%
\begin{tabular}[t]{c}%
\@author
\end{tabular}\par}%
\vskip 1em%
{\large \@date}%
\end{center}%
\par
\vskip 1.5em}
\fi
So you can just redefine it, remove the line you don't want, and you're done.
MWE
\documentclass{article}
\makeatletter
\def@maketitle{%
\newpage
\null
\vskip 2em%
\begin{center}%
\let \footnote \thanks
{\LARGE @title \par}%
\vskip 1.5em%
{\large
\lineskip .5em%
\begin{tabular}[t]{c}%
@author
\end{tabular}\par}%
%\vskip 1em%
%{\large @date}%
\end{center}%
\par
\vskip 1.5em}
\fi
\makeatother
\title{MWE}
\author{You}
\date{Today}
\begin{document}
\maketitle
Hello, world!
\end{document}
\maketitleoften is defined in your documentclass. Which one are you using? – David Woitkowski Dec 09 '14 at 09:11