Search Results for 'buddypress'
-
AuthorSearch Results
-
February 14, 2015 at 9:22 pm #234495
In reply to: bbPress Forums
eVersatile
ParticipantI have found the solution within /wp-content/plugins/bbpress/includes/extend/buddypress/groups.php
February 14, 2015 at 8:39 pm #234491In reply to: [Resolved] Changing "Groups" slug???
carolaword
ParticipantGreat! I was going to give you this link, it’s too late, but maybe someone else needs everystep:
February 14, 2015 at 7:56 pm #234488In reply to: Register and Activate Association Problem
David
ParticipantI looked over this page and checked everything. Signups are allowed. Comments are allowed. My site still does not allow anyone to Register or Activate BuddyPress forum accounts. There are currently no other plugins enabled. Can anyone please look at the site and let me know what is going on if you have a few minutes? I understand if you can’t help and appreciate the time but I just want to try to troubleshoot what’s going on as something is missing and it’s either something on my end that I can’t find or BP is just not working with this theme or something else.
It is not possible for me to associate pages with the settings shown in the screenshot above. I’ve tried to do this at least five times and it simply will not save the changes no matter. I’ve checked the settings. The pages exist, there are slashes, but it’s still dead.
It’s chubbybunny.info
February 14, 2015 at 7:32 pm #234487In reply to: Updating issue
r-a-y
KeymasterYou’re doing something wrong because this is working for me:
function my_enqueue_styles() { if ( ! function_exists( 'is_buddypress' ) ) { return; } if ( bp_is_user() || bp_is_current_component( 'groups' ) ) { wp_enqueue_style( 'my-style', get_template_directory_uri() . '/test.css' ); } } add_action( 'wp_enqueue_scripts', 'my_enqueue_styles' );Stylesheet is loaded on member profile pages and group pages only.
February 14, 2015 at 7:21 pm #234485In reply to: [Resolved] No Registration Page visible
r-a-y
KeymasterFebruary 14, 2015 at 12:11 pm #234476In reply to: Welcome email customize?
Henry Wright
ModeratorDo you know where that text comes from? I can’t find it anywhere in BuddyPress or in WordPress cores.
February 14, 2015 at 11:19 am #234474In reply to: Change parent for groups page and get 404
Mathieu Viet
ModeratorHi @aglekis
I can imagine why setting the Members directory page as a Parent of the groups directory page is not working: the built url must Be in this case site.url/members/groups and then BuddyPress is looking for a member having the username “groups” and do not find it ๐
Instead of using the Parent attribute, you can use wp_nav_menus ๐
February 14, 2015 at 12:33 am #234462In reply to: Preventing spam registrants?
djsteveb
Participant@jessiewordpress – might want to check out either “good question” (change default question / answers!) – or ‘buddypress humanity’ as well. They have made a huge impact on the spam registration issues we used to deal with.
February 14, 2015 at 12:04 am #234460In reply to: [Resolved] Changing "Groups" slug???
ksimpson1986
ParticipantI figured it out! i had to use poedit, then i had to manually create the en_US file and place it in a manually created language folder in the wp-content folder. thank you! with the new versions, you have to go to your buddypress folder under plugins, make a copy of the buddypress.pot file, rename it and edit it in poedit. manually create the language folder, and place it in there. the rest is automatic!
February 13, 2015 at 11:02 pm #234457In reply to: Welcome email customize?
jessiewordpress
ParticipantIf that plugin doesn’t work, does Buddypress allow us to change this notice you receive after clicking on the activation email link:
Youโre almost there! Simply enter your activation code below and weโll take care of the rest.
(there was no activation code needed, so Iโd like to edit this content out)
February 13, 2015 at 10:22 pm #234449EscapandoDelSistema
Participanti tried to do that but its giving me the error with random plugins, sometimes it shows after activating buddypress and then it shows after i activate another one
February 13, 2015 at 10:09 pm #234447In reply to: [Resolved] Changing "Groups" slug???
carolaword
ParticipantI think I remember when I isntalled Buddypress it created a language folder at wp-content/languages, let me know if you can find it there
February 13, 2015 at 9:47 pm #234446In reply to: Change "Members" in profile URL
adriandegar
ParticipantWow, I found the answer by renaming by members page in the Buddypress settings! I feel incredibly dumb.
February 13, 2015 at 8:15 pm #234430In reply to: Pagination links have same href [Resolved]
r-a-y
KeymasterThe issue that the OP is referring to is member pagination.
I can confirm that this is fixed in BP 2.2.0.
danbp’s issue is related to pagination on notification pages:
https://buddypress.trac.wordpress.org/ticket/6205February 13, 2015 at 8:11 pm #234429djsteveb
Participant@escapandodelsistema – so you disable all plugins, then enable buddypress. Open your site in a new tab, it works… then go to your first tab and enable your first plugin “Add From Server” – then go to your other open tab, refresh page.. do this for each plugin until you find the one that is causing the 500 error.
you may find it is one plugin that is the issue, or you may find that it is a combo of three plugins that cause the problem. Odds are you are going to have to hunt down the other problem plugin author for help.
February 13, 2015 at 8:04 pm #234425In reply to: Pagination links have same href [Resolved]
r-a-y
KeymasterWhat version of BuddyPress are you using? This should be fixed in 2.2.0.
February 13, 2015 at 6:07 pm #234417In reply to: [Resolved] Changing "Groups" slug???
ksimpson1986
Participanti downloaded the poedit software, then i did a full search in both the buddypress plugin folder, and my theme folder. nothing called buddypress-en_US.po pulled up…:-/ am i not looking in the right place?
February 13, 2015 at 5:54 pm #234416In reply to: bp_has_members multiple params with array
shanebp
ModeratorYou can’t pass an array of ids in that manner. Pass a csv string.
For example, assuming $custom_ids is an array:$gsxrgeek = 'include=' . implode(",", $custom_ids); $gsxrgeek .= '&type=alphabetical'; if ( bp_has_members( $gsxrgeek ) ) //etcFebruary 13, 2015 at 5:31 pm #234414In reply to: version 2.2.0 and is_page() [Resolved]
r-a-y
Keymaster@hnla – It’s related to this changeset:
https://buddypress.trac.wordpress.org/changeset/9322This issue was also noted on the following ticket about buddypress.org:
https://buddypress.trac.wordpress.org/ticket/6108#comment:2In BP 2.2, I tested
is_singular()on BP pages and it returnstrue.bp_is_user()also works as expected.If there are any other issues outside of
is_page(), please let me know specifically what the issues are, as I do want to address these.February 13, 2015 at 2:20 pm #234406In reply to: [Resolved] Changing "Groups" slug???
carolaword
Participantyou need to download poedit software, and look for the language file buddypress-en_US.po open it and use it as you are translating the plugin. Use the search tool for “Groups” and everytime it turns out replace that word for “Circles” and upload that file again.
That’s it.February 13, 2015 at 1:11 pm #234404In reply to: Get current message and recipient id in BuddyPress
shanebp
ModeratorTake a look at this file:
buddypress\bp-messages\bp-messages-actions.php
Infunction messages_new_messagethere is this hook:
do_action_ref_array( 'messages_message_sent', array( &$message ) );February 13, 2015 at 8:25 am #234393In reply to: Change parent for groups page and get 404
Gregoire Noyelle
ParticipantHello imath ๐
Thanks for your answer.When the directory page for the group is a child of another page then you get a 404, is that correct ?
Yes that’s right.
And for the parent, I chose the BuddyPress Members page (Membres in french). Perharps that’s the problem
February 13, 2015 at 8:20 am #234392In reply to: Private topics in Global Forum ?
gatelli
ParticipantI’m sorry I’m not using bbpress, but BUDDYPRESS forum.
February 13, 2015 at 7:44 am #234388In reply to: Custom Profile menu
barodscheff
ParticipantThank you but your solution is outdated. I’ve found it also while searching.
And thats the big problem with buddypress. There was an update about one year ago and everything changed. So nearly all common customizations do not work any more.Thats the reason why the plugin ‘buddypress custom profile menu’ also doesn’t function anymore.
Fortunately I found the solution. It looks like this:
function profile_new_nav_item() { global $bp; bp_core_new_nav_item( array( 'name' => 'Contact Athlete', 'slug' => 'contact_athlete', 'default_subnav_slug' => 'extra_sub_tab', 'position' => 160, 'screen_function' => 'view_manage_tab_main' ) ); } add_action( 'bp_setup_nav', 'profile_new_nav_item', 10 ); // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = function view_manage_tab_main() { add_action( 'bp_template_content', 'bp_template_content_main_function' ); bp_core_load_template( 'template_content' ); } function bp_template_content_main_function() { if ( ! is_user_logged_in() ) { wp_login_form( array( 'echo' => true ) ); } } // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = function profile_new_subnav_item() { global $bp; bp_core_new_subnav_item( array( 'name' => 'Extra Sub Tab', 'slug' => 'extra_sub_tab', 'parent_url' => $bp->loggedin_user->domain . $bp->bp_nav[ 'contact_athlete' ][ 'slug' ] . '/', 'parent_slug' => $bp->bp_nav[ 'contact_athlete' ][ 'slug' ], 'position' => 10, 'screen_function' => 'view_manage_sub_tab_main' ) ); } // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = add_action( 'bp_setup_nav', 'profile_new_subnav_item', 10 ); function view_manage_sub_tab_main() { add_action( 'bp_template_content', 'bp_template_content_sub_function' ); bp_core_load_template( 'template_content' ); } function bp_template_content_sub_function() { if ( is_user_logged_in() ) { bp_get_template_part('my-contact-form'); } else { wp_login_form( array( 'echo' => true ) ); } }I hope it helps anyone.
Finally I’d like to say that I have never seen such a bad documentation in development as in buddypress. I know buddypress is free but WordPress is free too and they have a great doc.
February 13, 2015 at 6:15 am #234386rosyteddy
ParticipantTo answer my own question this can be done at the site of site creation. However I do not know how to toggle or change it later – https://buddypress.org/support/topic/how-to-toggle-site-visibilty-in-the-activity-stream/
-
AuthorSearch Results