Home › Forums › Mikmag WordPress theme › Vitality Directory
- This topic has 1 reply, 4 voices, and was last updated 12 years, 4 months ago by Anonymous.
-
AuthorPosts
-
-
at #8336beverlyMember
Vitality Directory is using the Mikmag theme, we run numerous plugins and a couple of additional one-off geo locating plugins developed specifically to enhance the user experience.
At this time we are experiencing issues with the Buddpress avatar sizing.
Additionally we are experiencing thumbnail icon issues as well.
We look forward to working with your team to resolve our issues.
-
at #8348AnonymousInactive
Hi Beverly,
I am aware that buddypress has got some issues with the avatars at the moment. Though this is an issue on the buddypress site which we can’t solve in our theme but the buddypress developers will have to work on that.
As for the thumbnail icon issues, what thumbnails exactly are you referring to? Is this something in buddypress too or is it something completely different? I’d like to test doing what you are trying to do on my test website to see what the result is for me.
With kind regards,
Kevin Sanders
-
at #8422beverlyMember
And BP seems to point back to the wp theme developers on the avatar issue. Here is the only string I could find on the subject. It had to do with the WP theme Salutation:
(BP Customer says) Philipp said on August 16, 2012
The update to 1.6.1 doesn’t fix any avatar issues I have with avatars since I updated to 1.6 with Salutation theme (AND BP Default). It’s all the same – Buddypress loads always another avatar size. Sometimes …-bpfull-16×16.jpg another time -bpfull-24×24.jpg and all of them are resized to 80×80 by CSS. That just looks awful… ;( Is there still a problem with the avatar fix?!
(BP response) Boone Gorges said on August 16, 2012
Philipp – BuddyPress does not create avatars of the form -bpfull-24×24.jpg. This must be a customization by Salutation.
The avatar fix in BP 1.6.1 had to do with displaying the URL vs the HTML img entity, and was indeed fixed.
Here is my message awaiting moderation today on BP site:
Wesite: vitalitydirectory.com
Using BP 1.6.1 with Theme Dutch’s theme MikMag. Also having issues with cropping of avatar images. Theme Dutch says it’s BP, and I see that BP says it’s the theme. I just need to understand how to fix it or work around it until the curlpit is found. It generally stretches the image to really close up or half a face if you don’t use the crop tool at all… and the crop tool can’t be used or you get hair, an eye or a forehead only. Go to my site and search on my profile: Beverly Carroll or view the footer where you see many of the avatars. Some few are OK b/c it was before issues! We have tried all different sizes of original images with limited success…not something you want to offer a paying member as an action item for them to fuss with!
On the thumbnail slider, I took it down b/c it looked odd but put it back up so you could see it on the home page: vitalitydirectory.com. It is the Special Shortcode named Accordion-Carousel Thumbnail slider that pulls from the blog images. Love the slider, but some images were skued!
-
at #8427AnonymousInactive
Hi Beverly,
I will check this BP avatar issue and please give me a day or two. And also, what you meant by the images on the slide is skued?
Le
-
at #8595adminKeymaster
Hi Beverly,
Where looking into the avatar issue right now, will let you now asap. Where still not sure if it’s a theme issue or a buddypress issue, the information thats now available it’s a bit confusion..
But we need to have this fixd, one way or the other right! So where are looking for a solution.Mike
-
at #8596AnonymousInactive
Hi Guys,
I’ve been checking this for several days now and I couldn’t find anything. I’ve been trying to find a fix for that in our edit avatar section. My only guess is that there is a javascript issue being used by BuddyPress in manipulating the image for the avatar. I’ve read this link here: http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/after-update-to-1-6-profilimagebug/ and I think this is in connection with this issues. In our Mikmag theme, we don’t have any piece of code that manipulates the avatar section. Mikmag BuddyPress is based from the instructions on how to create Buddypress Theme provided by BuddyPress documentation. We only did custom styling. I will just continue to check this one maybe I could find something.
Le Nur
-
at #8616beverlyMember
Hello Mike and Le Nur,
This is the vitality directory architect Michael Quale. Beverly has asked me to log into her account here to help with the avatar issue. I have spend a considerable amount of time investigating this issue with the principals at vitality directory. I have come to the conclusion that this IS a THEME related issue.
We have switched the sites theme to use the default BuddyPress Theme and the avatar sizing and cropping works just fine. At this point the responsibility lies with your development team to fix this considerably HUGE bug in your theme code. I can be reached via Gtalk or email at michaelquale@gmail.com
Thanks for your time.
-
at #8664beverlyMember
I have most of this avatar issue figured out.
First:
change-avatar.php lines 33 to 37:
<img src=”<?php bp_avatar_to_crop() ?>” id=”avatar-to-crop” class=”avatar” alt=”<?php _e( ‘Avatar to crop’, ‘buddypress’ ) ?>” />
<div id=”avatar-crop-pane”>
<img src=”<?php bp_avatar_to_crop() ?>” id=”avatar-crop-preview” class=”avatar” alt=”<?php _e( ‘Avatar preview’, ‘buddypress’ ) ?>” />
</div>The avatar class is used throughout the site and causes the crop tool to be tiny and messed up.
Change class to a class of your own, in my case, vl-avatar
Create class vl-avatar:
img.vl-avatar {
float: left;
margin: 0 10px 10px 0;
}Then change class below:
<img src=”<?php bp_avatar_to_crop(); ?>” id=”avatar-to-crop” class=”vl-avatar” alt=”<?php _e( ‘Avatar to crop’, ‘buddypress’ ); ?>” />
<div id=”avatar-crop-pane”>
<img src=”<?php bp_avatar_to_crop(); ?>” id=”avatar-crop-preview” class=”vl-avatar” alt=”<?php _e( ‘Avatar preview’, ‘buddypress’ ); ?>” />
</div>Finally,
wp-content/themes/Mikmag/css/1140.css Line 77 :
img, object, embed {
max-width: 100%;
}This is effecting the avatar cropping tool and forcing the cropping image to be re-sized to the tool itself and not to the original picture on screen. The highlighted cropping image floats left and is 100% cropping tool width.
If I remove this from 1140.css everything works fine, but you loose reactivness of theme images throughout site.
Final Question: Where do I go so I can remove the inherited css from the crop tool image that is highlited in the crop image. I think it may be here: bp-core-avatars.php lines 569 to 583. Any Ideas, try it yourself and see.
Well at least most of it is figured out:
Let me know what you find out at vleverenz [at] gmail [dot] com.
-
at #8676AnonymousInactive
Hi Beverly,
Sorry if it took us several weeks to fix this. I will be email you directly for the fix.
Le Nur
-
-
AuthorPosts
- You must be logged in to reply to this topic.