Search Results for 'crop'
-
AuthorSearch Results
-
September 25, 2013 at 11:42 am #171775
In reply to: Avatar Crop not working: selector is not a square
Hugo Ashmore
ParticipantI already checked /wp-content/plugins/buddypress/bp-core/bp-core-avatars.php and everything is okay on there
What exactly did you check in that core file? It’s unlikely an issue with a core BP file unless someone has been editing it or unless a bug has crept in very recently which I doubt.One thing you should have checked is whether the issue exists when you switch to a theme known to be generally ok with BP i.e twentythirteen or twentytwelve
This sounds like a classic theme issue really.
September 15, 2013 at 6:51 pm #171348In reply to: Avatar not appearing
cgrundlos
ParticipantThanks, I have the same config but the same problem; the avatars show up correctly in WP dashboard but are not shown in BP (the crop-function doesn’t work either). I’d like to know if there is a fix which can be implemented by upload…
September 12, 2013 at 5:57 am #171181In reply to: [Resolved] Change avatar crop feature not working
justintyme
ParticipantHaving same issue. Moreover I’m running multisite in which all 5 sites have all the same plugins activated + all use the same theme. Yet, on some sites cropping works and on half of them not. All sites have exactly same setup, same settings, same extensions and same functions. Nothing modified. Along with the crop function, the buddypress register function also fails on those site where cropping fails.
Theme issue? Don’t think so.
Other plugin issues, nope.PS, on the sites that DO have a functioning cropping, when first time clicked on any area within the cropping module, the page jumps and users have to scroll up again.
WP 3.6.1 mlti network, latest buddypress, bbpress latest, cubepoints, set permalinks on %post-name%. Activated and deactivated rtMedia (which sucks for me since it conflicts with build-in media upload) but also gives same results.
September 11, 2013 at 7:18 pm #171162In reply to: Documentation is out-of-date
bp-help
Participant@mirgcire
As of BP 1.7+ bbpress is a seperate install. Try following the below instructions.
1.) Go to dashboard/settings/buddypress/components and check the box “User Groups”
2.) Install and activate bbpress.
3.) In the front-end go to the groups page and click the button “Create a Group”
4.) Give the group a name and description, click “Create Group and Continue
5.) Select your privacy options then click “Next Step”
6.) Under Group Forum click the box “Yes. I want this group to have a forum.” Click “Next Step.”
7.) Choose avatar for the group, click “Upload” then crop the image. Click “Next Step”
8.) Select friends to invite. If you dont have any yet just click “Finish.”
This should do it. Now you have groups with their own forum. Click the Groups nav button then click the group you created. Below the avatar you will see the tabs Home | Forum | Etc.
Hope this helps! Good luck!September 4, 2013 at 4:19 pm #170850In reply to: How to make Avatar a requirement?
hughshields
ParticipantA few things to add to the situation.
I have looked in the register.php file which I can modify in my child theme folder (Registration/register.php). The code to upload an avatar during the registration process exist at the end of the register.php file. The upload step however only displays when I have my suffusion theme active. It does not show up in the default twentytwelve or twentythrirteen themes or the buddypressdefault theme.
The final step of the registration process says “Your Current Avatar” and gives the option to choose a file and upload the image. When I select a file and click the Upload Image button the cropping tool should display but it doesn’t. Instead I get directed back to an empty registration page.
Please let me know if anyone has a fix for this. I would really like to use the avatar upload in registration and I think others want this option as well.September 4, 2013 at 3:29 pm #170844In reply to: How to make Avatar a requirement?
hughshields
ParticipantI am on BP 1.8.1 using extended profiles. At the end of my registration process a screen displays automatically asking for the new user to upload an avatar. I assumed that this was an addition with either BP 1.8.1 or part of extended profiles. This essentially adds the avatar upload to the registration process. Am I the only one seeing this?
Unfortunately when a new user clicks the upload button it does not work. Instead of allowing the new user to browse for an image and crop it and then upload it, the new user is just directed back to the registration page.
I posted a separate thread about this a week ago. Please let me know if anyone is also struggling with getting the avatar upload to work in the registration process.August 20, 2013 at 9:31 pm #170134In reply to: I dont want to crop my avatar picture
August 20, 2013 at 9:29 pm #170132In reply to: I dont want to crop my avatar picture
bp-help
Participant@rimoreno
If you want to use an entire image then the dimensions need to be square. For example 400width X 400height, or 600width X 600height. There may be other ways that include editing code but I find this is the simplest way.August 8, 2013 at 11:24 am #169577In reply to: [Resolved] Avatar crop not working
applegateian
ParticipantMy fix above was very specifically for the Reverie theme, I am not sure if this will work for other themes.
August 8, 2013 at 6:25 am #169563In reply to: [Resolved] Avatar crop not working
Nexus66
ParticipantThanx Mercime
Even I was facing the same problem.August 2, 2013 at 1:11 pm #169268In reply to: I can'y crop my avatar!
4ella
Participanthttp://stackoverflow.com/questions/5070490/buddypress-jquery-google-hosted-library-conflict-with-image-crop
@techknowledgic This solution doesn’t work for me, but if you made some customization as I did you can try it, but I would bet that in your case it is some old plugin issue related.August 2, 2013 at 12:18 pm #169267In reply to: I can'y crop my avatar!
4ella
Participant@mercime is right this is a javascript issue, cropping function conflicts with some code or plugin, happily I have discovered yesterday the same issue immediately after installing ajax message box in single.php from this site http://flintmaker.com/code/jquery-fade-message-in-or-out/ which I wanted to use to greet people with ajax message conditionally by knowing where are they from (using maxmind geoip which already works) and if they come from search engines, after removing that
line
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
from header.php cropping function start to work again, on wordpress.stackexchange.com are many answers (one of them cropping related and most of them speaks about this solution in code below in functions.php or bp_custom.php what are solutions which doesn’t work for me too 🙁// Javascript conflict function mytheme_enqueue_scripts() { wp_deregister_script('jquery'); wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"), false, '1.4.2'); wp_enqueue_script('jquery'); } add_action('wp_enqueue_scripts', 'mytheme_enqueue_scripts');Hopefully @mercime should help me how to avoid this js conflict, I am unfortunately not able to use ajax-admin.php instead jquery as most people there advice to use.
WP 3.6 and BP 1.8 beta2 and I use bp default themeAugust 2, 2013 at 10:00 am #169264In reply to: I can'y crop my avatar!
@mercime
Participant@techknowledgic looking at the theme demo, there’s no script like that in source code. So it could very well be an old plugin enqueueing the old jQuery version. Did you deactivate plugins batch by batch as I mentioned above?
August 2, 2013 at 9:08 am #169262In reply to: I can'y crop my avatar!
Techknowledgic
ParticipantOK , so I will try to ask for support from the theme developer
and BTW, I asked a question in the other topic yesterday and not today which is before u reply here 🙂
Thanks!
August 2, 2013 at 8:22 am #169258In reply to: [Resolved] Avatar crop not working
@mercime
ParticipantAugust 2, 2013 at 8:21 am #169257In reply to: I can'y crop my avatar!
@mercime
Participant@techknowledgic upon further check, the problem is that your theme is loading the old jquery 1.7.2 version from Google
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
while WP/BP are using jQuery v1.10.2
<script type='text/javascript' src='http://www.techknowledgic.com/wp-includes/js/jquery/jquery.js'></script>This is a theme issue. Themes and plugins should use the jQuery version packaged with WordPress. Please contact theme author.
August 2, 2013 at 7:41 am #169253In reply to: I can'y crop my avatar!
Techknowledgic
ParticipantAbout the image it’s true because I tried to change it after I did some changes to the website and also it didn’t work
and about what you said, if I switch to theme to twenty twelve, will I lose any data in my website or saved settings even if I back up the database?
and about my problem, I found someone having exactly the same problem as me and he fixed it but I didn’t understand exactly how https://buddypress.org/support/topic/avatar-crop-not-working-2/
bu I am using a different theme so if you could help me with doing what he did it’s gonna be great 😀
Thanks!
August 2, 2013 at 5:27 am #169241In reply to: I can'y crop my avatar!
@mercime
Participant@techknowledgic the link to the image in your first post leads to 404 page. Basic troubleshooting involves changing to Twenty Twelve theme and deactivating all plugins except BuddyPress. I recommend setting up a development site if you’re going to grow and maintain your BP site with the same environment as your production/live site. That way, you could test plugins and themes before installing/activating them.
Back up your database, then deactivate plugins batch by batch to identify the conflict. Start with the avatars plugin you have activated in your site.
August 1, 2013 at 11:28 pm #169233In reply to: [Resolved] Avatar crop not working
Techknowledgic
ParticipantI am facing the same issue
please can you tell me exactly how you fixed it?
Thanks!
August 1, 2013 at 9:56 pm #169232In reply to: I can'y crop my avatar!
Techknowledgic
ParticipantI am sorry for bumping but it has been around 4 days and no solution so far
any help?
July 30, 2013 at 1:27 pm #169097In reply to: Avatar crop issue
fredje007
ParticipantI found this issue is caused by RTmedia Plugin (former Buddypress media). Once disabled group avatars uploading went fine, once activated again group avatar uploads did not work anymore. I will post this issue on their forum
July 30, 2013 at 12:57 pm #169093In reply to: Avatar crop issue
Hugo Ashmore
ParticipantIt will be something like:
$ chown domainuser:domainuser /whateverfolder/but you need root access via shell , be in the directory above one needing changing or specify full path /var/home/… and possible a switch to specify to do change recursively on sub-directories, so don’t try the above without checking a tutorial first.
Do some googling on linux chown command.
July 30, 2013 at 11:59 am #169087In reply to: Avatar crop issue
fredje007
ParticipantI have the feeling it has something to do with ownership of the files. When I look with Filemanager within DirectAdmin to the files in de uploads directory , for example: uploads/group-avatars/8/<ipload filesnames> I see that the folder 8 and the files names are ownership: Apache, instead of my domain username…. Any clues how to resolve this, if it has anything to do with it?
When I look in the normal avatar folders al filenames and folders are owned by my domain user.
July 29, 2013 at 8:23 am #169003In reply to: I can'y crop my avatar!
Techknowledgic
ParticipantNo need a PM because it’s already in this topic http://www.techknowledgic.com/wp-content/uploads/avatars/3/profile-Copy-300×450.jpg 😀
here is the website http://www.techknowledgic.com/
Thanks!
July 29, 2013 at 8:09 am #169002In reply to: I can'y crop my avatar!
Jigesh
Participantalright, please give me your site name in personal message, i will try to fix it. thanks.
-
AuthorSearch Results