Looking to remove the published date and title of posts in content archives when using Ambiance Pro?
Simply edit index.php
and comment out or delete the following:
add_action( 'genesis_entry_header', 'genesis_do_post_title', 13 );
and
add_action( 'genesis_entry_header', 'ambiance_post_info', 12 );
Before:
After:
This is very helpful. What if I either wanted to:
a) remove the date & title from the grid images as you have show AND move the title to below the grid image?
or
b) make the date and title stand out more no matter what color the image is. For instance, if I stay with white (#fff) default font, how can I make it stand out by adding a background shadow or transparency?
Both are possible.
In b, we can either use a text shadow or a semi-dark background color with transparency.
Which do you prefer?
I implemented (b) with background color and opacity. That said, I’m very curious to learn how to move the date and title below the images in the grid on the index.php homepage.
Edit Ambiance Pro’s style.css.
Change
1)
.ambiance-grid .entry-title a,
.ambiance-grid .entry-title a:hover {
color: #fff;
display: block;
}
to
.ambiance-grid .entry-title a,
.ambiance-grid .entry-title a:hover {
/color: #fff;/
display: block;
}
2)
.ambiance-grid .entry-header {
position: absolute;
top: 40px;
width: 100%;
}
to
.entry-image-link {
overflow: hidden;
display: block;
}
.ambiance-grid .entry-header {
/position: absolute;
top: 40px;
width: 100%;/
background-color: #fff;
padding: 15px;
}
3)
.ambiance-grid .entry-meta,
.ambiance-grid .entry-meta a {
color: #fff;
font-size: 18px;
}
to
.ambiance-grid .entry-meta,
.ambiance-grid .entry-meta a {
/color: #fff;/
font-size: 18px;
}
That worked beautifully for moving text below homepage grid images, thank you!!! Wow, I’m so grateful. For future readers, remember to (a) purge website cache (b) clear your browser’s cached images and files.
Hello Sridhar sir,
I’m using ambiance Pro, and I want to remove featured post showing on the top of every post and author (gravatar round shape) Image at the starting of the post content.
I want to remove them from every post.
Please help sir.
Thanks in advance.
Hi Amit,
Follow https://sridharkatakam.com/how-to-remove-the-featured-image-entry-background-and-gravatar-on-single-posts-in-ambiance-pro/.
I need to remove the Featured Image as well as author Image from all posts in ambiance pro theme.