Archived topic
Add a box below post date
3 replies · Started by Jorge on May 13, 2020
Hi there,
I've been looking for this but I couldn't find any info, so I ask, sorry!:
1- How can I add a box or boxes like the ones on the image, below the post date and author name?
2 - How can I bold the author name and remove the hyperlink on "last update:..."
Thanks :)
Hi there,
1. You can try to add them using the after_entry_title or after_entry_header hook with a hook element:
https://docs.generatepress.com/article/hooks-visual-guide/#single-post
2. CSS to bold author name:
.entry-meta .author-name {
font-weight: 700;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
And PHP snippet to remove date link:
https://docs.generatepress.com/article/generate_post_date_output/#remove-link-from-date
Adding PHP: https://docs.generatepress.com/article/adding-php/
Great. Thanks, Leo!
No problem :)