Hi,
Please open to edit single.php file of theme.
Find this code and cut it from here:-
<div class="post-info clearfix">
<?php if ($single_author && !$remove_dates) { ?>
<span><?php echo sprintf(__('Posted on <span class="date updated">%1$s</span> in %2$s', 'swiftframework'), $post_date, $post_categories); ?></span>
<?php } else if ($single_author && $remove_dates) { ?>
<span><?php echo sprintf(__('Posted in %1$s', 'swiftframework'), $post_categories); ?></span>
<?php } else if ($remove_dates) { ?>
<span class="vcard author"><?php echo sprintf(__('Posted by <span itemprop="author" class="fn">%1$s</span> in %2$s', 'swiftframework'), $post_author, $post_categories); ?></span>
<?php } else { ?>
<span class="vcard author"><?php echo sprintf(__('Posted by <span itemprop="author" class="fn">%1$s</span> on <span class="date updated">%2$s</span> in %3$s', 'swiftframework'), $post_author, $post_date, $post_categories); ?></span>
<?php } ?>
<?php if ( comments_open() ) { ?>
<div class="comments-likes">
<div class="comments-wrapper"><a href="#comments"><i class="ss-chat"></i><span><?php comments_number(__('0 Comments', 'swiftframework'), __('1 Comment', 'swiftframework'), __('% Comments', 'swiftframework')); ?></span></a></div>
</div>
<?php } ?>
</div>
Paste it just before this code:-
<?php if ($show_related) { ?>
Thanks
Mohammad