Search Results for 'buddypress'
-
AuthorSearch Results
-
June 30, 2016 at 5:14 pm #255595
In reply to: PHP Fatal error on BP 2.6.1 activation
@mercime
ParticipantReplied to some people at https://wordpress.org/support/topic/problem-with-buddypress-plug-in-on-sweetdate-theme?replies=10
June 30, 2016 at 4:23 pm #255591In reply to: PHP Fatal error on BP 2.6.1 activation
Slava Abakumov
ModeratorFixed in BuddyPress 2.6.1.1 released minutes ago.
June 30, 2016 at 2:18 pm #255581In reply to: Buddypress
kizzpatrick
ParticipantThank Sharmavishal,
I would like to provide the dashboard or a private page for the group where only users of that group will be able to download the package, it’s not digital download it is just a zipped folder they will have to download.
the problem with BuddyPress is that when you create a private group, they can be seen by other users who aren’t in the group even though they can’t view their information but due to competition purpose I don’t want to allow other members to see all the groups. I want only members who are in that group to be able to see their group and I would like to allow the group administrator to add users on the front page, not by invitation. I would also like to remove that site activity panel because I don’t want to appear like a social network and I don’t want to allow comment.
is there a plugin or a way to customize BuddyPress to meet with this requirement
ThanksJune 30, 2016 at 12:04 pm #255575In reply to: Crop cover photo
danbp
ParticipantPlease check the forum before asking for a same question posted a few hours before yours!
Closing this topic as duplicate.
June 30, 2016 at 11:39 am #255571In reply to: Translation stop working after update
danbp
ParticipantDeactivate loco translate and redo what i described previously.
Search also for evtl. issues mentionned on loco translate support.Aside there is no reason to use that plugin if you don’t translated scecificcally BuddyPress to your nedd. sv_SE.po/mo are loaded automatically.
If despite this, you use your own translation version, see how to prevent your translation to be overidden. It’s explained in one of the sticky topics on the plugin support.June 30, 2016 at 10:00 am #255566In reply to: PHP Fatal error on BP 2.6.1 activation
Paul Wong-Gibbs
KeymasterYep, we missed a bug in testing. Will be fixed in 2.6.1.1 release later today.
We’re very sorry.
Bug report is https://buddypress.trac.wordpress.org/ticket/7153
June 30, 2016 at 9:37 am #255558In reply to: Buddypress
sharmavishal
Participantrest all can be done with buddypress private groups….regarding this “view the package we sent them and be able to download them” do you want to offer digital downloads?
June 30, 2016 at 9:36 am #255557In reply to: XProfile problem
June 30, 2016 at 9:17 am #255554In reply to: Translation stop working after update
danbp
ParticipantI’m unable to reproduce your issue. WP and BP language update is working properly.
BuddyPress har uppdaterats utan problem.
Guess it is this who genrate now an issue.
I have tried to update the po file with a new mo file but no differencePo & mo are not the same file, and mo is compiled…
Remove all bp language files from /language/
Deactivate and reactivate BP – this will force BP to reach his translation.June 30, 2016 at 9:10 am #255553danbp
Participantdo you have an issue with WDS BuddyPress Cover Photo ? If yes, please open a ticket on that gist. Or at least give some information about what you’re doing.
June 30, 2016 at 8:34 am #255548In reply to: Too Many Redirects when activating BuddyPress
Slava Abakumov
ModeratorJune 30, 2016 at 8:31 am #255546In reply to: Action/Filter After activity is created?
Henry Wright
Moderatorbp_activity_add()will add an item to the activity stream. It sounds like you want to add a notification. Trybp_notifications_add_notification():June 30, 2016 at 8:29 am #255544danbp
ParticipantHi,
please don’t double post ! Closing this topic. Discussion goes here:
June 30, 2016 at 8:00 am #255537In reply to: PHP Fatal error on BP 2.6.1 activation
Slava Abakumov
ModeratorYes, this is a known issue, likely introduced in BuddyPress 2.6.1. Will be fixed asap.
June 30, 2016 at 7:20 am #255535In reply to: [Resolved] Front.php and BuddyPress 2.6
@mercime
Participant@destac There are different ways to implement the new feature. For the screenshot, I did it in 4 simple steps.
Note that you might need to adjust how the widgets are registered, named, or styled based on your theme.
1. Registered three new widget areas in the child/theme’s
functions.phpfile.<?php // Only add this line if you are adding this to an empty functions.php file /** * Register three widget areas for Members front page. * * @since My Child Theme 2.6.0 */ function my_child_theme_widgets_init() { register_sidebar( array( 'name' => __( 'bp-members-1st', 'my-child-theme' ), 'id' => 'bp-members-1st', 'description' => __( 'Appears on each member\'s front page.', 'my-child-theme' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'bp-members-2nd', 'my-child-theme' ), 'id' => 'bp-members-2nd', 'description' => __( 'Appears on each member\'s front page.', 'my-child-theme' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'bp-members-3rd', 'my-child-theme' ), 'id' => 'bp-members-3rd', 'description' => __( 'Appears on each member\'s front page.', 'my-child-theme' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'my_child_theme_widgets_init' );Adjust items registered in child theme based on how your theme is setting up the widget areas.
2. Created a new file
front.phpwhich should be located as follows:wp-content/my-child-theme-folder/buddypress/members/single/front.php
(Create thebuddypress,members, andsingledirectories/folders if you do not have those in your theme yet.)Added the following in the
front.phpfile:<?php /** * BuddyPress - Members Front Page * * @since My Child Theme 2.6.0 */ ?> <div class="bp-member-front-wrap"> <div class="bp-member-front-1"> <?php dynamic_sidebar( 'bp-members-1st' ); ?> </div> <div class="bp-member-front-2"> <?php dynamic_sidebar( 'bp-members-2nd' ); ?> </div> <div class="bp-member-front-3"> <?php dynamic_sidebar( 'bp-members-3rd' ); ?> </div> </div>3. Added some styles:
.bp-member-front-wrap { clear: both; margin-bottom: 2em; } @media screen and (min-width: 46em) { .bp-member-front-wrap { clear: both; margin-bottom: 1em; } .bp-member-front-1, .bp-member-front-2 { float: left; margin-right: 1.5%; width: 32%; } .bp-member-front-3 { float: left; width: 32%; } }4. Went to Appearance > Widgets and add widgets to the Member Front Page Widget Areas.
As mentioned above, there are other ways to implement this new feature. Happy customizing!
June 30, 2016 at 7:19 am #255534sharmavishal
Participantread the above carefully
June 30, 2016 at 12:54 am #255525In reply to: Private Messaging Issue
r-a-y
KeymasterBuddyPress 2.6.1 was just released, which fixes this issue.
wordpress.org still needs to be updated, but you can grab the release here:
https://downloads.wordpress.org/plugin/buddypress.2.6.1.zipJune 30, 2016 at 12:02 am #255518In reply to: How to STOP Topic Creations?
r-a-y
KeymasterI think your question would be better suited on the bbPress forums since bbPress provides forum functionality for BuddyPress groups:
https://bbpress.org/forumsJune 29, 2016 at 7:57 pm #255513danbp
ParticipantHi @navyspitfire,
when you pick up code somewhere, you should also read the comments. The solution to your issue was in one of them.
Here is what wil exclude site admin from members directory and exclude also the logged_in user. The total member count will also be adjusted correctly on All members [x] tab and for the pagination count.
$count-2instead of$count-1do the trick.Excluded members, incl. admin, are of course excluded from search.
function bpex_hide_admin_on_member_directory( $qs=false, $object=false ){ // Id's to hide, separated by comma $excluded_user = '1' ; // hide to members & friends if($object != 'members' && $object != 'friends') return $qs; $args = wp_parse_args($qs); if(!empty($args['user_id'])) return $qs; if(!empty($args['exclude'])) $args['exclude'] = $args['exclude'].','.$excluded_user; else $args['exclude'] = $excluded_user; $qs = build_query($args); return $qs; } add_action( 'bp_ajax_querystring','bpex_hide_admin_on_member_directory', 20, 2 ); // once admin is excluded, we must recount the members ! function bpex_hide_get_total_filter( $count ){ return $count-2; } add_filter( 'bp_get_total_member_count', 'bpex_hide_get_total_filter' ); function bpex_exclude_loggedin_user( $qs = false, $object = false ) { //list of users to exclude if( !is_user_logged_in() ) return $qs; //if the user is logged in , let us exclude her/him $excluded_user= get_current_user_id(); if( $object !='members' )//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are listing friends?, do not exclude in this case if( !empty( $args[ 'user_id' ] ) ) return $qs; if( !empty( $args['exclude'] ) ) $args['exclude'] = $args['exclude'] .','. $excluded_user; else $args['exclude'] = $excluded_user; $qs = build_query( $args ); return $qs; } add_action('bp_ajax_querystring','bpex_exclude_loggedin_user', 20, 2 );Codex Reference
June 29, 2016 at 7:13 pm #255512In reply to: Mass messaging and emailing
snorklebum
ParticipantI’m using https://wordpress.org/support/plugin/mass-messaging-in-buddypress which seems to do the trick.
June 29, 2016 at 7:05 pm #255511In reply to: Getting error saying Buddypress Group photo large?
pfeufer
ParticipantHi,
I’m using the BRIDGE theme. I am using the UserPro plugin, but that handles user profiles and avatars and coded to work with Buddypress.Thanks,
JohnJune 29, 2016 at 3:29 pm #255499In reply to: BuddyPress user login/registration issues
bogski
ParticipantIt does indeed. There are a few development teams that specialise in both pieces of software. It is pretty good for it out of the box but once you start getting specific with your events and user management you need some custom code.
We have a small chunk of code that will grab new users, work out which event they have signed up for and insert them into 2 BuddyPress groups based on the location of the event they have signed up for.
Im not a PHP developer though so im not too sure of the exact details of how it works together.
To be honest though, i never had chance to look into alternatives to either Event Espresso or BuddyPress. The website and plugins were already installed when i started working on the project. Most of what i have learnt about them both so far has been trial, error, headbutt keyboard and repeat.
I have worked out though that it is definitely an issue with BuddyPress and EE (after all that). It seems the BuddyPress login and registration takes precedence over the Event Espresso one.
It also seems to be creating new users as moderators as well. But thats a different story and isnt a BuddyyPress issue.
PhilB
June 29, 2016 at 12:43 pm #255490In reply to: BuddyPress user login/registration issues
sharmavishal
Participantdont use Event Espresso….have used events organizer and events manager this 2 plugins which support buddypress…does Event Espresso support buddypress?
June 29, 2016 at 12:32 pm #255488In reply to: BuddyPress user login/registration issues
bogski
ParticipantThanks for that. Im still trying to work out where it is breaking so im just asking the same question on all support forums for the plugins that i use.
A shot in the dark, but can you think of anything that could cause the EE and BuddyPress to stop working? I know that they are both popular plugins and people do use them in conjunction with each other.
Phil
June 29, 2016 at 12:05 pm #255486In reply to: Group count incorrect on group directory page
zzkamikazezz
Participantprevious discussion I found, I could be running in to the same issue, it may be due to deleting users asI am still building and testing the site:
https://buddypress.org/support/topic/why-does-group-count-not-go-down-when-you-delete-group/However I notice it ays there are 8 groups, 7 of which are ‘my groups’, but only 5 groups are really on my site now.
-
AuthorSearch Results