Sanat,
You will need to modify the file framework/functions/post-functions.php at line number 19 to insert this elseif condition –
elseif (is_archive())
$title = '';
and you method mo_get_entry_title() should finally look like –
function mo_get_entry_title() {
global $post;
if (is_front_page() && !is_home())
$title = the_title('',
false);
elseif (is_singular())
$title = the_title('', '
', false);
elseif (is_archive())
$title = '';
else
$title = the_title('', false);
/* If there's no post title, return a default title */
if (empty($title)) {
if (!is_singular()) {
$title = '';
}
else {
$title = '' . __('(Untitled)', 'mo_theme') . '
';
}
}
return $title;
}
Hope this helps.