Search Results for 'buddypress'
-
AuthorSearch Results
-
August 20, 2015 at 10:24 pm #243426
djsteveb
Participant@katiemeeks
someone posted a similar question 4 days ago ( https://buddypress.org/support/topic/i-want-to-nobody-can-not-change-own-gender/ )someone else answered to take a look at http://buddydev.com/plugins/bp-non-editable-profile-fields/
I have not used this yet – but it sounds perfect for this kind of thing.
August 20, 2015 at 8:17 pm #243423In reply to: Cant activate pending accounts
danbp
ParticipantNo need to be rude. I’m trying to help you by asking questions, that’s all.
As you use a third party plugin, i suggest you to deactivate it or even, to remove it completely and to test WP+BP only. Don’t know the plugin you mention, but one thing is sure, something is going wrong. On a standart install, handling pending members is generally not a problem.
WP was updated 48 hours ago to 4.3 and is working flawless with BP2.3.2.1. (i have 6 BP site running on different configuration, without issues). If your issue appeared after this update, it is possible that a plugin is now no more able to work correctly with this new release.
FYI, BRO is compatible up to: 4.2.4 and was last updated: 2015-7-21. Pretty recent, but who knows where the error comes from ? Have you asked for that issue on the plugin support ? No…
If you thing it is an issue with BuddyPress, report the bug, describe the way to reproduce by opening a ticket on BuddyPress Trac, the only place where you can expect a fix. If BP devs agree with the issue.
More about BP bugs on Codex.
August 20, 2015 at 6:37 pm #243422In reply to: Cant activate pending accounts
DJ9
ParticipantYes , they can register separate on both sites. Buddypress isnt working right on either site and use to. Thats the main point with this post, it was working and now it isnt, I really dont see why why this is hard to understand. I am using another plugin to activate my subscribers like i said before but it doesnt let you do bulk in high numbers. It is called, BP registration options. I have 2 databases and the pages are set up individually and buddypress is not working on either like it use to. I guess if I cannot get the proper help with your plugins I could always change it to the ultimate member plugin or something else. Buddypress has an issue right now, at least with bulk activating, was trying to get a simple answer to what is wrong, but it seems your more concerned with not saying anything is wrong with your plugin instead of trying to help fix it.
August 20, 2015 at 5:56 pm #243421In reply to: Member Count
danbp
ParticipantFind some hints here:
August 20, 2015 at 11:08 am #243415danbp
ParticipantSorry, you have to ask the author, it’s not a BuddyPress related question.
August 20, 2015 at 4:29 am #243411In reply to: Cant activate pending accounts
DJ9
ParticipantOne other thing, yes I have uninstalled buddypress and tried a fresh download and it is up to date and still the same.
August 20, 2015 at 4:28 am #243410In reply to: Cant activate pending accounts
DJ9
ParticipantYes buddypress is on both pages, I control both pages through 1 cpanel, and yes I can activate 1 at a time, the bulk is what is not working. I always have had pending since I started my page and the bulk activate use to work just fine. I have separate plugin ins to catch spammers and spam. I only use the settings buddypress comes with, no mods at all.
August 19, 2015 at 11:42 pm #243407In reply to: Cant activate pending accounts
danbp
ParticipantHave you installed both site on a same or separate WordPress, and same question about BuddyPress ?
Another question about 3500 pending request.
Are you sure these aren’t spammers ? Why are they pending ? Have you setup this behave or is it a sudden amount of registerer ?
Can you activate one account at time ? Or is only bulk activation defect ?
August 19, 2015 at 10:24 pm #243405In reply to: Register Page Redirect to Profile
shanebp
ModeratorIt shouldn’t matter which page you login from.
https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect
Try:
August 19, 2015 at 9:56 pm #243402In reply to: [Resolved] Not working with WordPress 4.3
danbp
ParticipantDo you use a custom function building a widget ?
if you used the old php4 method
parent::WP_Widget( false, $name = __( 'My widget' ) );you should now use
parent::__construct( false, $name = __( 'My widget' ) );This can also be in a theme or a plugin. BuddyPress use
_constructmethod and is not concerned.If you deactivate WP_DEBUG in wp-config, the notice will disapear. And it’s only a notice, nothing will sudenly stop to work.
August 19, 2015 at 7:04 pm #243391gametimemedia
ParticipantI know i can use BuddyPress Registration Groups since i just found it but it’s not a required field. I guess it does what i need but would be nice if it was a required field, even nicer if the group image was there instead of the check box.
August 19, 2015 at 6:07 pm #243388In reply to: New nav item
muskokee
ParticipantI am abandoning trying to use the profile.php file by adding a case and just going with a new file in members/single/filename using this similar code (which works as intended):
function custom_bp_nav() { global $bp; bp_core_new_nav_item( array( 'name' => __( 'Site Settings', 'buddypress' ), 'slug' => 'site-settings', 'position' => 80, 'screen_function' => 'site_settings_screen', 'default_subnav_slug' => 'site-settings', 'parent_url' => $bp->loggedin_user->domain . $bp->slug . '/', 'parent_slug' => $bp->slug ) ); } function site_settings_screen() { //add title and content here - last is to call the members plugin.php template add_action( 'bp_template_title', 'site_settings_screen_title' ); add_action( 'bp_template_content', 'site_settings_screen_content' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/test' ) ); } function site_settings_screen_title() { echo 'Site Settings'; } function site_settings_screen_content() { echo 'Content here'; } add_action( 'bp_setup_nav', 'custom_bp_nav', 50 );August 19, 2015 at 3:19 pm #243384In reply to: [Resolved] Not working with WordPress 4.3
danbp
ParticipantBuddyPress roadmap:
https://buddypress.trac.wordpress.org/milestone/2.3.3
@chevalhack, of course it is ! This forum is installed on WP 4.3. What is not working… do you see warnings or notice ? Give details please !
@toggerybob, seems it’s your membership plugin who brings these warnings.
If it is Memberhip 2, it was updated today.
https://wordpress.org/plugins/membership/August 19, 2015 at 1:34 pm #243378In reply to: Child theme – profile.php
muskokee
ParticipantSorry, part of the above is not true. I am using bp-custom.php. The only function in there is to disable BP registration.
//EDIT
Oh my! I just found this post https://buddypress.org/support/topic/bp-legacy-in-bp-templates/ . Am I supposed to be using the files from bp-legacy as this post suggests? If so, what a terrible name for a folder!
August 19, 2015 at 1:18 pm #243377In reply to: Child theme – profile.php
muskokee
ParticipantThanks for your reply @danbp! I got the profile.php from bp-default. I had previously placed bp-default custom edit.php and change-avatar.php inside the child theme at single/profile folder without a problem.
Yes, I use many custom functions in my functions.php file but I have not made use of bp-custom.php.
I also have a custom template titled plugin-buddypress.php in my child-theme folder above the buddypress folder.
I disabled all the profile plugins (pics, follow, cover, conditional field groups) and commented out all functions acting on Buddypress in my functions.php file. This did not make a difference! I still have a blank loop with the profile.php added to my child theme.
//EDIT
And I am running BP 2.3.2.1 on WP 4.2.4August 19, 2015 at 11:26 am #243376danbp
ParticipantBuddyPress use bbPress when you allow group forums.
If the group is private, the attached forum is also hidden ton non members of that group. Same for public or private groups.You don’t have to change the group forum setting in the forum list.
The right steps
Create a group A
A is set to private
Allow a forum for A
—— The wrong step ——–
Going to dashboard forum admin, and set forum A to private. If you do this nobody will see it except site admin.
https://buddypress.org/support/topic/hide-buddypress-and-bbpress-items-from-guests/
https://buddypress.org/support/topic/buddypress-private-group-is-not-visible-in-bbpress/August 19, 2015 at 11:13 am #243375danbp
ParticipantPlease d’ont double post.
https://buddypress.org/support/topic/buddypress-forum-hidden-group-but-still-visible-on-page-by-members/August 18, 2015 at 10:09 pm #243364danbp
ParticipantReaders, see also this plugin used to hide XProfile Field groups from different user types based on the user’s role.
https://github.com/tannerm/buddypress-conditional-field-groupsAugust 18, 2015 at 7:45 pm #243361In reply to: Photo upload
djsteveb
Participant@ricsca2 – you are wise to be weary of plugins that are not in the wp-repo – but I think for the wrong reason. I am more concerned that plugins have not had the extra security checks that are run through the official repo. However I have seen more useful plugins for BP outside of the official repo – like the updated one for affecting the activity stream blocking – only on github, ones that get good support on wpmudev, etc.
I want to have faith in the ‘media press’ mentioned above, and I bet many are using it successfully – so it’s worth a try for a short term solution.
You concern about “extensions unofficial because if the developer ceases to update them” – should go beyond things in or not in the wp dot org repo – and it is a valid concern given the history of WP / BP and plugins in general – especially in regard to photo uploads / handling.
Back in the day it was “bp-album” – in the repo – worked. Support ceased – abandoned. Updates to wp / bp broke it.
Rtmedia came in (and for a very short while there was actually an importer / exported from bp-album to rtmedia!) – things have changed – rtmedia is likely the most used plugin for BP – and now they have made it an over-bloated POS (IMHO) – and now when things break they only offer support for paid / premium addons.
(begging for media export options here: https://buddypress.org/support/topic/rtmedia-export-script-attachments-api/
Now there are some other options – still no way to export the data. There are some things being worked on – but nothing definitive. Some great foundations being laid (bpattachments now a (not yet used) thing) –
This is why I have asked time and time again for picture / media handling to be added to BP core –
most recently a year and half ago (https://buddypress.org/support/topic/photos-albums-media-please/ ) – plus in the buddypress surveys.
so future updates will consider breaking this very important piece of live social networks.However for now we are stuck with not knowing if things are going to work now, or next update. Just like we have been for years..
August 18, 2015 at 4:47 pm #243352danbp
ParticipantYou’re declaring 3 arguments, but only one is given if you are testing this localy.
Possible local scenarion you used:
– you create a new user
– you login as admin and activate the pending user. You get 3 warnings. Logout.
– login as new user.
– you see the messageRemove $key & $user and redo the same and all went fine.
Usefunction send_msg_to_new_member( $user_id )and change 3 to 1.
Add also a conditional check to test if the messages component is active. (see link blow).Not tested yet on live site.
This was originally published by @henrywright here:
https://buddypress.org/support/topic/deliver-custom-message-via-buddypress-to-new-users/#post-229688August 18, 2015 at 4:15 pm #243350In reply to: Set page template for BuddyPress Registration.
danbp
ParticipantBP’s registration template is in: https://buddypress.trac.wordpress.org/browser/tags/2.3.2/src/bp-templates/bp-legacy/buddypress/members/register.php
Copy it to your child-theme, /your-theme/buddypress/members/register.php, and make your change in that copy.
In some case, you could also use bp_get_template_part filter.
August 18, 2015 at 3:38 pm #243348In reply to: Override Login Form (bp-core-widgets.php)
danbp
Participant@dineshravajani07, searching this forum for “login widget” have brought many answers.
August 18, 2015 at 3:28 pm #243346In reply to: Making display textfield empty
danbp
ParticipantHi @david-ar,
if you expect for help, give detais related to BuddyPress, not FB. Which option are you talking about?
https://buddypress.org/support/topic/when-asking-for-support-2/August 18, 2015 at 10:59 am #243337In reply to: how to check if the length of field is too long?
Henry Wright
ModeratorYes, I think you can. Try this:
function my_username_validation() { if ( strlen( $_POST['signup_username'] ) > 16 ) { global $bp; $bp->signup->errors['signup_username'] = __( 'Put your error message here.', 'buddypress' ); } } add_action( 'bp_signup_validate', 'my_username_validation' );August 18, 2015 at 9:29 am #243328In reply to: Photo upload
danbp
Participantif the developer ceases to update them This problem is the same for official or unofficial plugins.
Brajesh is a long year and well knowed buddypress plugin developper, you can trust his awesome work !
https://profiles.wordpress.org/sbrajesh#content-plugins -
AuthorSearch Results