Deleting post metadata - Travelify 2.3.0

Hello.
I’ve read some advice on deleting meta from posts, but I couldn’t do anything. I couldn’t find content-single.php. I found content-nosidebar.php, but it goes:

<?php /** * This file displays page with no sidebar. * */ ?>

<?php
/**
* travelify_before_loop_content
*
* HOOKED_FUNCTION_NAME PRIORITY
*
* travelify_loop_before 10
*/
do_action( ‘travelify_before_loop_content’ );

/**
* travelify_loop_content
*
* HOOKED_FUNCTION_NAME PRIORITY
*
* travelify_theloop 10
*/
do_action( ‘travelify_loop_content’ );

/**
* travelify_after_loop_content
*
* HOOKED_FUNCTION_NAME PRIORITY
*
* travelify_next_previous 5
* travelify_loop_after 10
*/
do_action( ‘travelify_after_loop_content’ );
?>

I’ve also been looking for meta information (author, date) in other php files but I found nothing. Can anyone help me? Where are all the editable hidden? I want to get rid of all meta everywhere in my site.

I would also like to delete first post from my main page - exactly where Hello World! first appears. I deleted Hello World, and there’s info - NO POSTS FOUND. How to delete that one too?

Thank you in advance for your answers and sorry for my English.

  1. You can remove post meta by simply adding these few lines of code inside Appearance >> Theme Options >> Other >> Custom CSS.
.entry-meta {
  display: none;
}
  1. To remove that “No Posts Found” message you can use static page as front page and you can enable it via Settings >> Reading. But this is not what you were looking for, please post your website URL and I will write a Custom CSS to get the job done.