BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Cover Photos and Featured Image sizes
Tagged: cover photos, featured images
- This topic has 7 replies, 5 contibutors, and was last updated 8 years, 5 months ago by Anonymous.
Question
July 2, 2015 at 10:49 am #42027@style960There’s still an issue with cover photos and featured images (I assume group cover as well) where they have to be the exact size of 1050 * 320 otherwise they don’t display properly. It’s not practical for me to advise every user or editor they need to use Photoshop to resize their image properly before they upload it.
Is there any update on when this will be resolved?
Cover photos look great but in their current state they don’t work, not something users would expect.
Thanks,
Paul.Answers
July 3, 2015 at 11:27 am #42096@alyssa-buddyboss
AlyssaParticipant@style960 I haven’t had any issues with the WordPress auto crop feature, perhaps they are uploading images that are too small? What exactly is the formatting issue? Can you provide a link?
July 3, 2015 at 2:20 pm #42104@style960@tjchester No user apart from myself has uploaded a cover photo or featured image yet. I’ve deliberately uploaded images bigger than 1050 * 320 and they don’t crop. I’m trying to pre-empt issues that users will run into. It looks poor IMO. I’ll PM you a link.
July 4, 2015 at 2:38 pm #42130@alyssa-buddyboss
AlyssaParticipant@style960 I see the issue now. They are loading full resolution. This is bad. Sent to devs with high priority.
April 25, 2016 at 11:25 am #69715@justinjdeanAny update on this? Looking to provide some direction to users before we launch our site. What image size and parameters should we be recommending when they upload featured images?
April 25, 2016 at 11:35 am #69716@
AnonymousHi @justinjdean
You can use some custom function to define your own size.https://www.buddyboss.com/support-forums/topic/cover-image-size/#post-67330
Regards
Varun DubeyJune 20, 2016 at 3:00 pm #71363@david012Hi this cover image is such a problem ad I think i know why it is. This is for the following
– Cover image for slider
– Cover image for profile page
– Cover image for groups
– Cover image for postsWhen you upload a picture say 1024 x 640 i,e batman.jop, wordpress creates several images
batman.jpg (Full)
batman-620 x 420.jpg (medium)
batman-728 x 640.jpg (large)what buddyboss does is takes the medium rated image and stretches it and its looks blurry and wrong. what buddyboss needs to do is give you the option to choose the quality of your cover images (for example select full)
Or tell us where to edit the (medium setting for all the cover images.
This is an example code in boss/single.php that takes mediium images
$id = get_post_thumbnail_id($post->ID, ‘medium’);can you reply to this post and tell us where to edit medium to full? for
– Cover image for slider
– Cover image for profile page
– Cover image for groups
– Cover image for postThanks
June 22, 2016 at 9:15 am #71410@
AnonymousHi @david012
For Group and profilefunction bb_cover_image( $settings = array() ) { $settings['width'] = 1200; $settings['height'] = 300; return $settings; } add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'bb_cover_image', 10, 1 ); add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'bb_cover_image', 10, 1 );
For blog, you can update single.php inside child theme
$id = get_post_thumbnail_id($post->ID, 'medium'); with $id = get_post_thumbnail_id($post->ID, 'full');
- The question ‘Cover Photos and Featured Image sizes’ is closed to new replies.