FullWidth Blog header customization

Hi there,

Quick question.
I wanted to create a fullwidth header on my blog pages, and was directed to:

This looks great, and I implemented the code.

One more question though.

Here’s my test page:

http://www.tickething.decorolux.com/2017/11/29/cikk3/

All is fine, but the date, author, and tags are not displayed. Can you help me do that?

Thanks!

Hi There,

Thanks for writing in!

Seems you have disabled the post meta option in the blog setting. Please go to customizer -> blog and enable the post meta option.

If that doesn’t work please send us your admin and FTP details in a secure note so that we can have a look.

Thanks

Thanks! That worked terrific.

Can you tell me what I did wrong?

I’ve added this code into my child theme’s wp-single.php (I’m using integrity so according that)

<h1 class="title h2"><?php the_title(); ?></h1>

Thing is, when I investigate the page, I can see that the H1 is created, but the php code does not get executed.

No need to answer if It’s complicated, I’m just curious. :slight_smile: Thanks for the quick help!

Thanks!

Hi There,

Thanks for the clarification, your code is write but it should come in side post loop.
Please check this for your answer. http://www.wpbeginner.com/wp-themes/create-custom-single-post-templates-for-specific-posts-or-sections-in-wordpress/

Thanks!

Hi guys!
What a beatifull solution.
Maybe a idea to make it the standard for the blogposts?
The only problem i have is that my video post’s don’t show the video anymore.
How shoud i add this to the wp-single file?
Or do i need to do something else?

Hope to hear from you guys!

Hi There,

We might take this in consideration depending on the number of requests.

Please provide your URL so we can take a closer look to your video post.

You can follow the same path, copy the original file to your child theme and do the changes.

Hope it helps

Hi Joao,

And any idea how i should make this the same for my CPT?
On my CPT printermedia there is this paralax of the featured image and below that the normal Featured image.
https://smart2b.net/printermedia/dtt0001-mat-papier/

info:
Stack: integrety
Link: https://smart2b.net/
Blog: https://smart2b.net/smart2b/blog/
Normal post: https://smart2b.net/update-tm-c3500-printerdriver-v2-firmware/
Video post: https://smart2b.net/tm-c3500-rol-labels-plaatsen-in-de-printer/

Hi,

While we are happy to help with the occasional quick tweak here or there, we are well into the custom development realm, which is outside the scope of support we can offer. If you need more in depth changes, you may wish to consult with a developer. X is quite extensible with child themes, so there are plenty of possibilities. Thanks for understanding.

Hi Paul,

I only want to get the video displayyed ad a single video post view.
The CPT Header (featured image & title i fixed myself).

For the readers:
Adding the following CSS in the editor.
change “CPT slug” to your CPT slug.
.single-“CPT slug” .entry-featured {
display:none;
}
.single-“CPT slug” .entry-header .entry-title {
display:none;
}

Hi,

You can add this in Custom CSS

.single-printermedia .entry-featured {
    display: block !important;
}

or

.single-format-video .entry-featured {
    display: block !important;
}

Hope that helps.

Hi Paul,

It works!
Thank you and keep up the GOOD WORK !!!

You are most welcome!

Thanks

Feel free to let us know in case any of the theme settings does not work as expected so that we can check it.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.