Search Results for 'crop'
-
AuthorSearch Results
-
July 29, 2013 at 8:03 am #169001
In reply to: I can'y crop my avatar!
Techknowledgic
ParticipantActually I am the owner of the website and not the developer so I don’t know how to fix something is I lose any data like the menu as you mentioned. so if I switch the theme and it works what should I do? and also if after changing the theme it doesn’t work what should I do?
I mean let’s try all the options better than losing data
ty
July 29, 2013 at 7:36 am #168999In reply to: I can'y crop my avatar!
bp-help
Participant@techknowledgic
I have never heard of anyone losing data by activating a different theme. That sounds kinda nuts to be honest. You may have to re-assign your menu though if you have made a custom menu and switch themes. I personally don’t know that theme and I shy away from anything that would make my content reliant on a particular theme. Just my opinion, but when push comes to shove it is a lot easier to transition from theme to theme when a theme uses WP standards. Activating twenty twelve is simple just go to dashboard/appearance/themes and activate it. If you decide to re-activate that other theme it should retain the data you previously had in the database. No harm no foul!July 29, 2013 at 7:17 am #168998In reply to: I can'y crop my avatar!
Techknowledgic
ParticipantThanks for ur reply!
how can I activate twenty twelve theme? and activating the theme will it cause to lose any data in the website?
knowing that I am using Pravda – Retina Responsive WordPress Blog Theme
ty
July 29, 2013 at 6:54 am #168996In reply to: I can'y crop my avatar!
bp-help
Participant@techknowledgic
Sounds like a theme issue. Have you tried activating twenty twelve theme to see if you can isolate it down to the theme? It sounds like a jquery issue at first glance. So try that and report back your findings.July 24, 2013 at 5:00 pm #168745In reply to: [Resolved] BuddyPress looks strange…
bp-help
Participant@romandaily
Not sure what theme your using because of the cropped image but you could try adding something like this to the themes style.cssul, li { list-style-type: none !important; }Have you checked to see if these bullets show up when activating Twenty Twelve Theme or bp-default?
July 19, 2013 at 7:29 pm #168358In reply to: [Resolved] JCrop and poor resolution issues
atburi
Participantissue solve. Max_Width had to be defined to a larger size. (It was defaulting to 450px).
// Define the avatar sizes
define ( ‘BP_AVATAR_THUMB_WIDTH’, 60 );
define ( ‘BP_AVATAR_THUMB_HEIGHT’, 60 );
define ( ‘BP_AVATAR_FULL_WIDTH’, 350 );
define ( ‘BP_AVATAR_FULL_HEIGHT’, 350 );
define ( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 723 );July 4, 2013 at 8:39 pm #167594In reply to: "There was a problem cropping your avatar."
mbenari
ParticipantYes
July 4, 2013 at 8:37 pm #167592In reply to: "There was a problem cropping your avatar."
Paul Wong-Gibbs
KeymasterAre you able to upload images through the WordPress media library?
June 26, 2013 at 9:38 pm #166994In reply to: Avatar Cropping
dswright
Participantwe are in fact using 1.8.3
June 26, 2013 at 9:20 pm #166989In reply to: Avatar Cropping
@mercime
Participant@dswd you would go with the jQuery version that current WordPress version is using because that’s what BuddyPress and other updated plugins are using. That’s a major reason why themes should not be dequeueing WP jQuery and enqueueing their own – bad form really.
June 26, 2013 at 9:02 pm #166987In reply to: Avatar Cropping
dswright
Participantwould you go with the most current version of jQuery?
That would be my assumptionJune 26, 2013 at 8:56 pm #166985In reply to: Avatar Cropping
@mercime
Participant@dswd current BP/WP versions are using jQuery 1.8.3 while there are themes and plugins who either use old versions of jQuery and some which enqueue version 1.9.1 and therefore not kosher. Check that.
June 26, 2013 at 8:46 pm #166984In reply to: Avatar Cropping
dswright
ParticipantI haven’t done anything in the way of disabling plugins
I just switched the theme and cannot replicate this (yet) in IE9What could be causing the issue?
Is there something that we are missing in our functions file?June 26, 2013 at 8:41 pm #166983In reply to: Avatar Cropping
@mercime
Participant@dswd it could be a theme or plugin conflict with BP. What have you done to troubleshoot issue?
June 26, 2013 at 8:05 pm #166979In reply to: Avatar Cropping
dswright
ParticipantThis is in the front end of the site on the BP side
eg.
/members/dwright/profile/change-avatar/not in the wordpress dashbboard
June 26, 2013 at 7:47 pm #166975In reply to: Avatar Cropping
GerritN
ParticipantHi there,
it should be pretty straight forward 🙂 All you need to do is to go to your media library and then you click on the image you would like to crop. You click on the edit button under the image and that should take you to where you can crop the image then. Let me know if you need my further assistance.
Kind regards
June 24, 2013 at 12:38 pm #166730In reply to: Where is user avatar upload?
aces
ParticipantYou might find google search better. Preface your query with site:buddypress.org to search this site only. ie site:buddypress.org change avatar
The gravatar upload works for me with bp 1.7.2. I can click on browse and then the upload button. Once uploaded I can crop the image.
Have you tried the usual troubleshooting of disabling all plugins and changing theme to either bp default or 2012 and see if it works. If so then re-enable individually until you find the culprit….
June 5, 2013 at 12:05 am #165388In reply to: Cropping Misaligned After Uploading Buddy Press 1.7
jeffp808
ParticipantHope that helps someone! Now after that, I have another very minor issue. When a user goes to upload or change their avatar, and if they upload – without clicking on the crop tool – then the image is uploaded off-center. But if they move the crop tool at all and then upload it is fine.
Any ideas how to align where buddypress crops the image from if they do not click the crop tool?
June 5, 2013 at 12:03 am #165386In reply to: Cropping Misaligned After Uploading Buddy Press 1.7
jeffp808
Participant@mercime, I’ve been spending some time on it and think I figured it out, but now I have another minor issue.
So incase anyone has this same issue, it was as simple as editing the /wp-content/plugins/buddypress/bp-core/bp-core-avatars.php file to match my profile images (which are 120px and 50px) :
function bp_core_set_avatar_constants() {
if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
define( ‘BP_AVATAR_THUMB_WIDTH’, 50 );if ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
define( ‘BP_AVATAR_THUMB_HEIGHT’, 50 );if ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
define( ‘BP_AVATAR_FULL_WIDTH’, 120 );if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
define( ‘BP_AVATAR_FULL_HEIGHT’, 120 );if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’ ) )
define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 120 );I found out the culprit was ” if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’ ) )
define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 120 ); – because before it had “,450” and if I uploaded a very large image then the size would be 450 but the box is only 120.June 4, 2013 at 11:49 pm #165383In reply to: Cropping Misaligned After Uploading Buddy Press 1.7
@mercime
Participant@jeffp808 looks like conflict with jcrop. Change to Twenty Twelve theme and check if cropping is corrected. If not, deactivate other plugins batch by batch except BuddyPress to check which is interfering with cropping.
June 2, 2013 at 5:03 am #165217mattg123
Participanthaving lots of plugins isn’t “bad” but the more you have, the more problems that can crop up, load times, compatibility etc etc etc
to locate your themes footer, go to your dashboard>appearance>editor and locate footer.php you’ll probably find wp_footer(); on its own, it needs to be <?php wp_footer(); ?> @chase8705
May 27, 2013 at 4:02 pm #164887In reply to: [Resolved] Notification "close" link is not working.
joe35
ParticipantHi, @mercime
Here I am again! The author of the theme did an update and thereby solved the two of the three problems I had. But the problem with the Crop tool persists, now in a different way. I can upload the image, I can see both images for one or two seconds and the crop tool and immediately after it automatically crop a part of the image without having the control over what portion of the picture will be cropped.
Could you please take a look on my website and tell me what you think? I don’t think it is related to JQuery since I no longer get this jQuery error.
Thanks in advance.
My Site URL: http://kostassamaras.com/develment
Username: Peter
Password: joe36lokMay 24, 2013 at 2:28 am #164678In reply to: There was a problem cropping your avatar.
@mercime
ParticipantOn my Server is the newest PHP Version.
@serververwaltung and what is your PHP version? Have you tried setting avatars using the BP Default theme to check whether it’s a theme JS/CSS issue? Do you see any other errors aside from what you posted? Have you tried deactivating plugins except BuddyPress to check for plugin conflict/s?
EDIT – Can you upload images in Posts > Add New and choose thumbnail image for example and insert it to post?May 18, 2013 at 11:41 am #164275In reply to: [Resolved] Avatar crop not working
applegateian
ParticipantI’ve fixed this, this was solved when there was an additional js file being called from the footer in the Reverie file:
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.min.js"></script>Removing this duplicate fixed the issue.
May 5, 2013 at 8:52 am #163436In reply to: Buddypress Profile pics, and sidebar profile
danbpfr
ParticipantPlease give more details before asking for help !
https://buddypress.org/support/topic/when-asking-for-support-2/BP use the standart WP process to upload pictures. The default user avatar is set in the WP settings > discussion where you can choose between different avatar services. The default avatar shipped by BP is Mystery Man.
When a custom user avatar is uploaded by a member, the picture goes to wp-content/uploads/avatars/ into a folder named by the user ID. The original image is handled by the process to result in 2 different size, and BP rename each file to something unique with a MD5 name, and a human comprehensive name, such as c3f55cb7f3beaa22f7463132f5e0878d-bpfull.jpg and c3f55cb7f3beaa22f7463132f5e0878d-bpthumb.jpg
Internally BP use 3 default sizes for the user avatar: 50×50(small), 150×150(full) and 450×450 (max original file size).
These sizes can be changed. Read here how: https://buddypress.org/support/topic/avatar-sizes-in-1-7/Each user can modify his profile and change his avatar so many times he want. The avatar upload process contains also an avatar cropper. The default cropping size is related to the avatar define “full”. By default it’s 150×150 and the original image is fixed to 450, even if it’s bigger on the user side.
Depending the placeholder of a profile avatar, those size are adapted to fit the template part fixed in the theme you use. On activity stream under bp-default theme, the avatar is 20×20, on members directory it’s 150×150, etc
The signup process is conditionned by registering. As long as a new user has not activated his account, he cannot upload or modify something, or even loggin to the site. That’s why there is no option for pics at this stage.
And yes, you can embed a profile pic into a sidebar or any other place. But this is only possible if you’re familiarized with BP and if you have some basic PHP knowledge.
-
AuthorSearch Results