Search Results for 'buddypress'
-
AuthorSearch Results
-
July 30, 2015 at 3:16 pm #242579
In reply to: What file handles registration
danbp
ParticipantIn the plugin !
wp-content/plugins/buddypress/bp-members/bp-members-functions.phpJuly 30, 2015 at 3:10 pm #242576In reply to: What file handles registration
David Ar
ParticipantThanks, but I can’t find the path “BuddyPress/src/bp-members/bp-members-functions.php”
Where is it located?July 30, 2015 at 2:37 pm #242573In reply to: Custom Profile Fields: Categories Checkbox
Jonny MacEachern
Participant@joepesci, I’m not longer working on the project that required this solution. From what I recall I didn’t end up using BuddyPress.
July 30, 2015 at 11:51 am #242568In reply to: SEO title for activity posts
bergblume
Participantthank you very much for your detailed input and your ideas regarding this “problem” within buddypress!!! I really appreciate it!
July 30, 2015 at 10:39 am #242567In reply to: Remove “Members” and “Viewing” from Members Page.
Henry Wright
ModeratorThe Viewing X of X members text can be found inside
bp_get_members_pagination_count()The best way to customise it is to localise (use a language file). See the Customizing Labels, Messages, and URLs article for more info.
July 30, 2015 at 8:01 am #242561In reply to: New user login info and forum display
danbp
ParticipantCustom code goes to bp-custom.php or child-theme’s functions.php
Code on second answer shows an usage example, it’s not the code you have to use.As you asked for register details, i thinked you want a resume of the registration with all mandatory xprofile fields information…
BP on a single install doesn’t sent a welcome email. This happens only on a MS install. But you add that manually. Read here:
July 30, 2015 at 3:28 am #242559In reply to: Removing Links from BP Profile Fields
djsteveb
ParticipantThis might be what you are looking for: https://codex.buddypress.org/themes/bp-custom-php/#examples
for detailed info, scroll up the page.
July 30, 2015 at 12:32 am #242556In reply to: New user login info and forum display
danbp
Participant1) depends which type of forum you use (standalone or group forum)
https://wordpress.org/plugins/bp-registration-options/
https://wordpress.org/plugins/bbpressmoderation/2) see here how to do that
https://buddypress.org/support/topic/add-dynamic-menu-link/#post-2424873) i’m not aware of such feature for BP
July 29, 2015 at 9:31 pm #242550In reply to: What file handles registration
Henry Wright
ModeratorIs the BP part making sure that username is unique?
Yes. That happens here
July 29, 2015 at 7:31 pm #242546In reply to: Suggestion – Blog Posting from Front-end
danbp
Participantthank you for the suggestion. 🙂
But BP is not a blog plugin, but a community tool. And WordPress has already a blog.
Some use BuddyPress for doing something very different as blogging. Some use it as a blog farm (on multisite).
As plugin, it is integrated to WP, so i doubt that BP devs want to do the opposite. 😉
You can anyway post a future request on Trac
July 29, 2015 at 7:21 pm #242544In reply to: What file handles registration
danbp
ParticipantThe register process is part of WordPress.
For BP, you can see in
\buddypress\bp-templates\bp-legacy\buddypress\members\register.php…but !
the username is already in use is not part of WP or BP.
Do you use an extra plugin ?July 29, 2015 at 7:03 pm #242543In reply to: How Do I Display A Custom Profile Field?
danbp
ParticipantWhere do I put this and how do I make sure it doesn’t get removed
Custom code can be added to bp-custom.php
July 29, 2015 at 7:01 pm #242542In reply to: Cannot invite members to group
danbp
Participant@bigswp,
if you have the same config today as @enaijo 5 months ago, update first.
Actually: WordPress 4.2.3 BuddyPress 2.3.2.1 and bbPress 2.5.8-5815If the issue is still in, ensure that you have some friendship, as you can only invite friends to join a group.
If all this is ok, you can open a ticket.
Give details about your config and any hint about how to reproduce your issue and mention this topic.Login to Trac uses same credentials as here.
https://buddypress.trac.wordpress.org/reportJuly 29, 2015 at 5:15 pm #242537In reply to: How Do I Display A Custom Profile Field?
kjgbriggs
ParticipantSorry for not responding for a little while.
Where do I put this and how do I make sure it doesn’t get removed when I update BuddyPress or BBPress?
July 28, 2015 at 5:28 pm #242509In reply to: Moving the Buddypress Admin Bar menu
danbp
ParticipantJuly 28, 2015 at 5:11 pm #242506In reply to: Can’t register user through front end
@mercime
Participant> then click on ‘Complete Signup’ button but nothing happens and no users are created in the backend.
@startershut Click on wp-admin menu Users and click on BP’s Pending link on screen then activate the user you just created. https://codex.buddypress.org/administrator-guide/pending-users-admin-screen/Here’s how regular member registration works: https://codex.buddypress.org/member-guide/registration/
July 28, 2015 at 4:02 pm #242500AM77
ParticipantThat’s where it is.
I’ve always created sites in the admin, and since I’ve never tried BuddyPress with multisite, I was wondering how a user that doesn’t have access to admin would create a site when they are registered as a subscriber, as you can’t create a sites in the sites tab. But it shows in that drop down on the right.
Thanks for your help.
July 28, 2015 at 8:50 am #242487In reply to: Add dynamic menu link
danbp
ParticipantCodex reference:
Also, on the forum, several topics, with many snippets:
https://buddypress.org/support/search/bp_nav_menu/Here a working example, which add 2 external links on a profile.
function bpfr_custom_setup_nav() { if ( bp_is_active( 'xprofile' ) ) ?> <li><a href="<?php bp_members_directory_permalink(); ?>"><?php printf( __( 'All Members', 'buddypress' ) ); ?></a></li> <li><a href="http://buddypress.org" target="_blank" title="BP">BuddyPress</a></li> <?php } add_action( 'bp_member_options_nav', 'bpfr_custom_setup_nav' );July 28, 2015 at 8:33 am #242486danbp
Participantas you discovered already, the CSS trick is a poor solution.
Two solution are on hand.
A first one, which applies to all activity feeds.
Basically the below snippet handles globally the activties output. You simply remove the activity(ies) you don’t want to see from the list. Note that almost all activity types are listed.
Add it to child functions.php or to bp-custom.phpfunction demo_parse( $retval ) { // existing BP/bbP activities // remove the one you wont to see from that list $retval['action'] = ' activity_comment, activity_update, bbp_topic_create, bbp_reply_create, friendship_created, joined_group, last_activity, new_avatar, new_blog_post, new_member, updated_profile '; return $retval; } add_filter( 'bp_after_has_activities_parse_args', 'demo_parse' );Codex:
The second solution, is to use a child-theme with a modified activity loop. This let you handle finer condition for each user.
Read this tut how you can do that.
Codex:
July 27, 2015 at 3:48 pm #242469In reply to: Users extended profile field content not showing.
shanebp
ModeratorThere are, unfortunately, two sets of user data.
Your imported data was placed in the _usermeta table.
This data will show in wp-admin > users > user > profileBuddyPress uses different tables: _xprofile_
This data will show in wp-admin > users > user > extended profile
And on the front end while viewing a member profile.You may want to write a script that migrates from usermeta to xprofile.
Study the structure of the tables used for xprofile.July 27, 2015 at 1:15 pm #242464July 27, 2015 at 1:07 pm #242463In reply to: Profile avatar directory location
Henry Wright
ModeratorCool running club! I was looking to join a club near me but Harold Wood is about a 30 minute drive away.
Regarding your question:
Is there a way of passing this path to Buddypress as the default avatar?
You can filter the default avatar URL using the
bp_core_default_avatar_userhook.Hope this helps!
July 27, 2015 at 12:49 pm #242461In reply to: Use “Jetpack publicize” to publish activity updates
Henry Wright
ModeratorAre activity updates a wordpress custom posts types?
No. Activity items aren’t custom posts; instead, they live in the bp_activity table. See here for a diagram.
July 27, 2015 at 12:45 pm #242460Henry Wright
ModeratorJuly 27, 2015 at 12:33 pm #242458In reply to: Disqus Comments and BuddyPress
Henry Wright
ModeratorThis isn’t possible out-of-the-box but there may be a plugin in the WordPress Plugin Directory that adds Disqus functionality.
Adding items to the BuddyPress activity stream is very easy. Check out the bp_activity_add() article for more info.
-
AuthorSearch Results