how to ger rid of h2 in all the pages

How i would be able to get rid of default h2 on all the pages of my website. I want to make it h1

To change h2 title tag to h1 for Pages and only Pages and not posts you have to look up file called content-extensions.php. This file can be found on travelify folder - library - structure.

On that file look for function called:

travelify_theloop_for_page

In that function you will see code like this:

<header class="entry-header">
	<h2 class="entry-title">
		<?php the_title(); ?>
	</h2><!-- .entry-title -->
</header>

That’s where you need to make these changes.

Let me know if this helps.