- This topic has 1 reply, 2 voices, and was last updated 7 months, 1 week ago by
David.
-
AuthorPosts
-
July 23, 2020 at 7:11 pm #1374226
Kaushik
Hello awesome guys,
Please help me with few things. I am sorry sorry that I am asking for many things in same request.
I am developing a Blog some someone and I need to replicate some features from Geekflare.com website.Below changes are for Blog home page (dynamic):
1. Blog homepage (dynamic) where all articles are listed, I want to set featured image as same size of post grid. I want to remove white space surrounding image.2. change how category looks like under the post, similar to above website.
3. change how author under the post looks like, similar to above website.
4. change read more style.
Below changes are for single post:
1. Featured image needs to be bigger and at the back of post title.
2. author and category box same as above website.
3. at the end of single post, 4 similar posts in boxed style layout.Sorry all lot of this in one request. to understand better please visit above website.
Thanks in advanceJuly 24, 2020 at 3:41 am #1374563David
StaffCustomer SupportHi there,
lets deal with the ones that don’t require custom development:
Blog:
1. Remove Padding around Featured Images option can be found here:
https://docs.generatepress.com/article/adjusting-the-featured-images/2 and 3. This article provides various post meta styles including ones similar to the example:
https://docs.generatepress.com/article/entry-meta-style/Use option one. Simply remove
'comments-link',
from the first array.To move the categories above the title use this PHP Snippet:
add_action( 'wp', function() { if (!is_single() ) { remove_action( 'generate_after_entry_content', 'generate_footer_meta' ); add_action( 'generate_before_entry_title', 'generate_footer_meta', 15 ); } } );
Single Post:
1. Change the Posts featured image location to above content:
https://docs.generatepress.com/article/adjusting-the-featured-images/Then use a layout element to reduce the content width of the Posts
https://docs.generatepress.com/article/layout-element-overview/2. and 3. I would suggest well supported plugins for authorbox and related posts.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/ -
AuthorPosts
- You must be logged in to reply to this topic.