- This topic has 50 replies, 2 voices, and was last updated 6 years, 9 months ago by
David.
-
AuthorPosts
-
August 1, 2019 at 4:23 pm #973488
Anthony
yeah comment count with icon to far right, is this possible? also, how would i replace the date with [posted_time]?
August 1, 2019 at 4:43 pm #973492David
StaffCustomer SupportYou can add comment count via the Customizer > Layout > Blog options. And i can provide some CSS to position it.
To replace the date, first disable the date in the blog options then:
1. Create a new Hook Element:
https://docs.generatepress.com/article/hooks-element-overview/2. Add the shortcode to the content text area.
3. Select theafter_entry_titlehook from the list
4. Check Execute Shortcodes
5. Display Rules tab set All Archives and Blog as the Locations.August 1, 2019 at 6:06 pm #973524Anthony
you are a genius, thank you. i enabled comment count but it looks like a tag.
August 2, 2019 at 5:25 am #973786David
StaffCustomer SupportThe CSS you have for stying your tag, remove the comments-link from the selector ie.
.cat-links a, .tags-links a, .comments-link abecomes:
.cat-links a, .tags-links aAugust 2, 2019 at 8:11 am #974047Anthony
worked. and then how do you move comments to the far right? also, why is post1’s tags shifted to the left?
August 2, 2019 at 8:28 am #974060David
StaffCustomer SupportI updated the CSS here which will align the comments to the far right of the tags.
The difference in alignment is due to the length of the title – Post1 is slightly shorter in length. The Flex grid being used will adapt to fit the content. If you want to keep all titles the same width ( longer titles will wrap ) then add this and adjust to suit:
.separate-containers .entry-header { width: 20%; }August 2, 2019 at 1:14 pm #974297Anthony
thanks. when i write content inside the post, everything shows up and moves stuff out of place. how do i hide it until you click the post like you did with your website?
August 2, 2019 at 2:34 pm #974350David
StaffCustomer SupportIn the Blog Options you can set the Excerpt Length to 0
August 3, 2019 at 8:54 am #974878Anthony
can i make each post linkable on hover? like when you hover over an individual post, its clickable instead of clicking on the post title to go to the content.
August 3, 2019 at 2:31 pm #975021David
StaffCustomer SupportTom provides a jQuery script to do that here:
https://generatepress.com/forums/topic/making-blog-post-container-clickable/#post-602864
August 5, 2019 at 1:58 pm #976495Anthony
when i click my post the content shows up in between the title and tag, how do i fix this? can i make the post title bigger without changing the size of the titles on the homepage? also, how do i get [posted_time] to appear in place of the one on the content page?
August 5, 2019 at 2:33 pm #976517David
StaffCustomer SupportI updated the CSS
hereto exclude the single post from the flex styling we added.
The Single Post uses the H1 ( the blog grid uses the H2 ) – so simply adjust its size in the Customizer > Typography > Headings > H1For the posted time – edit the Hook Element you created and on Display Rules add another Location of: Posts > All Posts.
You can remove the Date in Customizer > Layout > Blog –> Single
August 6, 2019 at 8:42 am #977280Anthony
it worked! what typography does the [posted_date] fall under so i can do the same thing? can i put the tags next to the title instead of at the bottom on the content page?
August 6, 2019 at 10:20 am #977363David
StaffCustomer SupportTry adding this PHP snippet – should move the tags below the title, then i can look at some CSS for positioning:
add_filter( 'generate_header_entry_meta_items', function( $items ) { if ( is_single() ) { $items = array( 'tags', ); } return $items; } );August 6, 2019 at 11:02 am #977403Anthony
i added the snippet but it didnt do anything
-
AuthorPosts
- You must be logged in to reply to this topic.