Search Results for 'buddypress'
-
AuthorSearch Results
-
September 3, 2014 at 7:52 am #189021
In reply to: Frisco for Buddypress ajax not working
danbp
Participantremember that you are on a buddypress support, not a divi or any other theme support.
If your install is working correctly with 2014 and not with divi, it is not a buddypress issue, but a theme issue.Likewise, you use a premium theme and it’s just impossible for us to help you on this point, as we have no access to such theme. And you probably can understand that we cannot buy them, just in case of to help some users. Premium themes generally include support in the licence.
So please take contact with the author.
You can also search the forum. I am certain that you can figure this out in a sec. Too.
September 2, 2014 at 10:29 pm #189011In reply to: Extended Profile Deletes Base Profile "Display Name"
danbp
Participantthe ticket is fixed and closed since 19 mounth.
If you follow the last IRC discussion around this ticket – 7 mounth ago – you’ll see that the issue cames again, and a new fix was added.Also from IRC, test this setting.
Anyway, if you think the issue is still there, feel free to open a new ticket and give the steps to reproduce. Follow Boone’s instructions
Login to Trac use the same credentials as bp.org forum.
September 2, 2014 at 9:25 pm #189009In reply to: Extended Profile Deletes Base Profile "Display Name"
Sokrates
ParticipantIn fact it sounds like this issue from 3 yrs ago: https://buddypress.trac.wordpress.org/ticket/3725
September 2, 2014 at 6:00 pm #189000Juan M. Gonzalez
ParticipantI had this same error, “There was a problem cropping your avatar”. After trying many things, what finally worked was installing php5-gd and do a restart.
On Debian:
apt-get install php5-gd
After this, usually people restart Apache server. But in this case there was Nginx server instead, and restarting it wasn’t enough. A PHP restart was needed.
So, I went to Webmin control panel to restart the Nginx PHP fcgi server:
System > Bootup and Shutdown > php-fcgi-…
And avatar cropping started to work for BuddyPress groups, profiles…
September 2, 2014 at 5:31 pm #188997In reply to: Custom Taxonomy for Groups
shanebp
ModeratorIt might be part of the 2.1 release, but more likely the 2.2 release.
https://buddypress.trac.wordpress.org/ticket/4017#comment:15September 2, 2014 at 5:13 pm #188996In reply to: Extended Profile Deletes Base Profile "Display Name"
danbp
Participantthank you for your reply!
You found a solution with a third party plugin. Glad it works for you, but it doesn’t really help BP users encountering the issue discribed by @solutionstriwareca. An issue which is, as @mercime said, “never seen before”. In other words unknown.Let’s try to stay on a buddypress pov first, before searching workarounds.
September 2, 2014 at 3:49 pm #188992In reply to: Extended Profile Deletes Base Profile "Display Name"
Sokrates
ParticipantHi, Just in case it’s of use….
I’m a bit of a BP newb, and I’m using a fresh install of WP 3.9.2 and BP 2.0.1
I’m using a Gravity form as a registration form with the GravityForms User Registration add-on to register BuddyPress users.
As a newb, I have been experimenting a lot with the XProfile fields, and also noticed that at some stage of the proceedings, I had made a change that resulted in the same problem as in the first post – the WordPress last name value was deleted and the firstname field was set to the nicename when the update profile button was pressed.
I had changed the primary field in the XProfile fields from “Name”.
Replacing the primary field as Name, and mapping the “full name” field from the Gravity form to this field in the Gravity User Registration add-on screen seems to solve it for me
September 2, 2014 at 12:23 pm #188914In reply to: [Resolved] Timestamps in members timezone
colabsadmin
Participant@shanebp Figured out the problem. I have the Buddypress Xprofile Custom Field Type plugin installed. Disabling that allowed the creation of the time zone options.
September 2, 2014 at 10:09 am #188907In reply to: Example sites
peter-hamilton
ParticipantBBPress is great, you can make it just like any other forum, just needs a bit more time invested.
Right now I am working on a BuddyPress forum/theme you can have a look at: BBFacelook
September 1, 2014 at 11:27 pm #188893In reply to: Facebook share button in Profile
danbp
Participanthi @igid26,
FB’s share button on a buddyPress profile is very simple to use.
You have only to provide the profile URL, not the whole profile header.
https://developers.facebook.com/docs/plugins/share-buttonThe code could be something like this (not tested, not sure if you need also a API key, or some urlencoding)
<a href="https://www.facebook.com/sharer/sharer.php?u=http://example.com/members/zuzana/">Share on Facebook</a>The picture cannot fit as you use bp_displayed_user_avatar( ‘type=full’ ) which is by default 150x150px. And FB’s code you entered is 550×550 !
To add some extra code in the header profile, you can do this with a function in a child theme functions.php instead of hardcoding the template. And another great advantage, if you use bp-custom.php, you will be totally theme independant.
function zuzanna_share_button() { ?> <a href="https://www.facebook.com/sharer/sharer.php?u=<?php bp_displayed_user_link(); ?>">Share on Facebook</a> <?php } add_action( 'bp_before_member_header_meta', 'zuzanna_share_button' );September 1, 2014 at 10:51 pm #188891In reply to: Dropdown group list on registration page
dolliv
ParticipantI’ve came across this plugin on my search, but that’s only in checkbox form… Any chance of getting that in dropdown form?
September 1, 2014 at 8:01 pm #188883danbp
Participanthi @fumow,
here is a way to color any group activity on the site activity.
Group A is red, Group B is green.The function use the group ID and add a class to the existing. You can modify it in your child theme style.css file
Function can be installed in functions.php or bp-custom.php
function fumow_li_class_group_id( $class = '' ) { global $activities_template; // the group id in case of an activity in group component is the field item_id if ( buddypress()->groups->id == $activities_template->activity->component ) { $class .= ' rj-' . $activities_template->activity->item_id; } return $class; } add_filter( 'bp_get_activity_css_class', 'fumow_li_class_group_id', 10, 1 );You have to create a css class for each group. The example use group ID 13 and 9
li.groups.activity-item.rj-13 { background-color: #FFD5F4; } li.groups.activity-item.rj-9 { background-color: #be4; }References:
bp-activity-templatetags.phpMay this help !
September 1, 2014 at 6:29 pm #188881In reply to: [Resolved] Make members list default to alphabetical
Bruce
ParticipantThanks, but I have one correction for those not familiar with php. Delete the comment “//” marks just before the “if” statement, or you come up with no list at all.
So <?php //if ( bp_has_members( bp_ajax_querystring( ‘members’ ) . ‘&type=alphabetical’ ) ) : ?>
Should be:
<?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ) . ‘&type=alphabetical’ ) ) : ?>
Thanks again. This was very helpful, especially the instruction to put the buddypress code in the child theme folder.
September 1, 2014 at 3:36 pm #188874DarkPsy
ParticipantIt’s one of those I just have to grind it out I guess. I’m not worried at all about the PHP Notices, that’s fine. The absolutely amazing behavior where the current_avatar function stops working even on a clean install is spooky. I’ll post something if I do make a break through , which seems unlikely right now.
Workaround: bbp_current_user_avatar fetches the gravtar link associated with an email.
At signup I have another custom field which forces the user to upload an avatar and then I replace all avatar references to the user defined profile image.You could do this with custom fields or a plugin like ‘Buddypress upload avatar ajax’ and then just retrieve the value from the $user.
Anyway you won’t have a website which relies solely on gravatars to begin with.
Until then I’ll stick to this, thanks again Dan for your patience. Cheers!
September 1, 2014 at 7:45 am #188858In reply to: Buddypress not Working
Hugo Ashmore
Participant@bucobill You have a different issue from that of the original posters, it’s for this reason amongst others that stepping into a running thread that wasn’t started by you with what is assumed the same issue is frowned upon and discouraged, multiple responses to different posters and issues in the same thread can not be supported. You must start your own thread on your particular issues. As a start point for your issue, looking at your url suggests you are on IIS or non standard apache type server running mod_rewrite head over to the WP codex and search on permalinks for some guidance on setting permalink structures under IIS.
@samchozx Likely your theme does something odd and non standard with page.php which BP needs to use to inject it’s content into, the_content() function must run through as normal in this file, you probably need to create a buddypress directory in your theme(as a child theme) and then copy page.php renaming it to buddypress.php and copied to the root of this new bp directory, that file then needs to retain the themes specific markup but properly use the ‘the_title()’ & the_content()’ functions. Please check the BP codex for guides on this process of overloading files, editing the actual file may require some help from the theme authors.September 1, 2014 at 7:03 am #188857In reply to: How do you make Site Activity page RANDOM?
danbp
ParticipantIt seems to focus on Members random page.
Ya, but only seems. The codex is not a ready-to-use answer to any kind of problematic or the solution for anything, but a guide who explains how things can/should be done with BuddyPress.
That’s why you’ll find essentially examples who can be used to extend or achieve your projects.Codex pages are written by volonteers (like you tomorrow ?), and none of them is able to know or to write about any given issue, situation, need.
It certainly would be an awesome codex, if every BP user would share some snipppet or simply some experience, by adding his personnal how-to…
Hold on ! You have to try, experiment and realize yourself. The other face of freedom and open source, i guess
If you have questions, do not hesitate. Like the codex, this forum is yours. 😉
September 1, 2014 at 6:18 am #188856In reply to: buddypress.org Forum Registration
Henry Wright
ModeratorThanks for your feedback @00mark. The buddypress.org site was actually open sourced back in the spring so you can now checkout, review, and patch the code yourself (if you want to). 🙂
Ref: https://buddypress.org/2014/03/open-sourcing-buddypress-org/
September 1, 2014 at 6:01 am #188855In reply to: Example sites
Henry Wright
ModeratorAlso, take a look at the Your BuddyPress forum for links shared by the community.
August 31, 2014 at 11:37 pm #188848In reply to: How do you make Site Activity page RANDOM?
danbp
Participanthi @jjnw,
random order is not avaible for the activity stream.
But it can be added as explained here 😉
August 31, 2014 at 11:25 pm #188846In reply to: BuddyPress register function
danbp
ParticipantAugust 31, 2014 at 11:10 pm #188844In reply to: Profile Page- Activity Description
danbp
ParticipantHi @techfundz,,
All BP text is referenced in bp-languages/buddypress.pot, like this:
#: bp-templates/bp-legacy/buddypress/activity/post-form.php:23 #: bp-themes/bp-default/activity/post-form.php:23 msgid "What's new in %s, %s?" msgstr ""To modify text:
or directly in the code via a child themeAugust 31, 2014 at 10:42 pm #188841In reply to: Buddypress not Working
Bucobill
ParticipantOK. I have the same issue as quite a few users. I went to the themes area and activated Twenty Fourteen. It still doesn’t work. I changed to Anyone Can Register, still doesn’t work. Added an htaccess.txt file with the WP code found on the wordpress site. Overall I spent the better part of the day with issues. I cannot access the register page, it is using blurbble/register even though I set the Permalink to Postname like http://blurbble.com/index.php/sample-post/ . I uninstalled and reinstalled buddypress and still nothing. If any help could be given it would be appreciated.
August 31, 2014 at 8:23 pm #188836In reply to: Custom Taxonomy for Groups
shanebp
ModeratorThere is no built-in way at the moment, but there are efforts to do so in the future.
More info:August 31, 2014 at 8:52 am #188803In reply to: Undisplay some Fields required in Reg.Process
danbp
ParticipantAugust 31, 2014 at 8:35 am #188802danbp
ParticipantHi @yamaryam,
What is recommended ? No clue ! Don’t make mistake ? Don’t forget the milk bottle ? 😉
The theory
1) install / configure WordPress
2) activate 2014 theme
3) checking every thing is ok
4) activate network
5) checking every thing is ok
6) install / configure BuddyPress
7) checking every thing is ok
8) enjoy your dashboard: one for the main site and one for the network
9) don’t forget the milk bottleHeadache ?
-
AuthorSearch Results