Post setting and can't click header

Hi, I got more issues that I can’t solve…

  1. I’m trying to make a test post, and trying to find the setting (full page post without “Read More” or move ‘date, author name, comment’ part to the bottom of each post).
    I’ve been trying to find where the setting is, but can’t find it anywhere…!

I read “Help” and it supposed to have setting option, but don’t see any. Please help

  1. I believe I could click header before and go back to the front page, but now header is no clickable.
    What happened?

My link is- http://styleimported.net/
Sorry for taking time again and thanks a lot in advance

Hi, I just again spent hours to find “blog page template”, but can’t find anywhere…

I’m talking about “#10 How to set up blog page” in Travelify Theme Instructions. There’s “Page Attributes” box that I can’t find anywhere…

Am I missing something obvious…? Thank you

Create Page not Post that will be as placeholder for Blog. Page has Page Attributes box.

Header image doesn’t have a link back to homepage, only logo does have it but you don’t have it enabled and you use header image instead.

To make it clickable you have to edit header-exteansions.php file and replace

<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">

with

	<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
				<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
			</a>

Hi Aigars,

  • Header - Yes, it worked. Thank you!

  • About placefolder for blog - I’m confused…

I found Page attribute box in a Page, and set the “Template” to “Blog Full Content Display”.
However, a blog content still has “Read More” button and nothing has changed.
Also, when I click “About” which is not a blog content but just a page, display blog content.

Also I wonder… Can’t I decide which post will have "Read More"option or not? It has to be all posts has the option or not at all? I’m very confused…
My site (http://styleimported.net) is now “Blog Full Content Display”, and when you click About, it show my post instead of About page. which is not right, but I want to move “author name, time, comment number” box to below the content like this page.

I really appreciate all your support…!

Update :
I just found your previous answer for another person below.

>Category pages by default will show only image+excerpt. If you want to show full content for category >pages you will have to edit content-extensions.php file.

I usually don’t use “Read More” option, so should I just disable “Read More” default setting? Because I found that there’s an option to make “Read More” each post, I can use that when I need it.

Please let me know what/how should I do it.
Thank you so so much

This should help: https://colorlibsupport.com/t/how-to-remove-excerpts-and-show-full-content-instead-for-category-pages-in-wp/#post-2839

Great, it worked! Thank you so much for your time and help!

I just want to double check one thing… I made a change in “content-extensions.php” as you said.
But is it ok to make changes Travelify folder? I thought we should make a change in Child theme, but Child theme only has style.css. Hope it’ll be ok after next update. I’m still not sure how it works about Child theme or php file…

Unfortunately, that part of theme is not made Child Theme friendly and is meant to be static.

And you will have to change this again after next update. However, I am think about adding link to Custom Header as several people have requested this feature.