-
AuthorPosts
-
November 15, 2016 at 11:31 pm #712661
Hi.
I have 3 things to do:1) I need to remove excerpt and comments count from blog page.
2) In this blog page and in post entries, I need post title OVER the featured image (like slider works).
3) I need resize featured images, in blog section grid and in entries posts (in entry post I need full width image).
I can’t give you the link because I’m working in my local.
Thank you.November 17, 2016 at 7:35 am #713406Hey vmoralestejedor,
Thank you for using Enfold.
1.) Did you set the Blog Layout > Blog Layout to use the advance layout builder? If not, you can toggle the Blog meta elements options.
2.) What is the current blog style? Please provide a link to the actual blog page so that we can inspect it.
3.) Please use the following plugin then adjust the “entry_with_sidebar” and “entry_without_sidebar” thumbnails in the Settings > Media panel.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelNovember 18, 2016 at 6:10 pm #714128Im working on my local, please find attached screenshots.
November 18, 2016 at 6:31 pm #714140Hi.
1.) I use the advance layout builder but I cant remove excerpt.
2.) See my last comment.
3.) I download your plugin but I cant set full screen images on entries, there are always a margin.
November 22, 2016 at 4:09 pm #715383Hi,
1.) Excerpt is a default WP function, so nothing which is controlled by the theme. Check out this here on how to get more control over it: http://www.wpbeginner.com/wp-themes/how-to-display-post-excerpts-in-wordpress-themes
You can remove read more link with this code inside functions.php:
// Remove Read More Links from all excerptsfunction custom_excerpt_more( $more ) { return '…'; } add_filter( 'excerpt_more', 'custom_excerpt_more' );
Adjust it’s length with this code:
// Define own excerpt length function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
2.) Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
3.) It’s not our plugin, but a default WP plugin. Don’t forget to regenerate thumbnails after adjust image sizes.
You could also adjust image sizes as mentioned here: https://kriesi.at/support/topic/enfold-image-sizes/#post-336176Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.