Search Results for 'buddypress'
-
AuthorSearch Results
-
July 29, 2015 at 7:31 pm #242546
In 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.
July 27, 2015 at 6:42 am #242456In reply to: Only show posts from selected post categories
joepesci
ParticipantHi, not on the buddypress specific activity steam, but my own. I just want to know how to create a custom field or something in order for the logged in user to select which news sources they want to see.
July 26, 2015 at 9:09 pm #242450In reply to: Add tinymce to Activity Post Reply Form
danbp
Participantbuddypress/bp-templates/bp-legacy/buddypress/activity/entry.php
Go here to search inside BuddyPress
July 26, 2015 at 8:52 pm #242448In reply to: add whats new form to a member activity/friends tab
danbp
Participantuse this function
bp_get_template_part( 'activity/post-form' );Add this to bp-custom.php or child theme’s functions.php
function whats_new_my_friend() { if ( bp_is_user_friends_activity() ) : bp_get_template_part( 'activity/post-form' ); endif; } add_action( 'bp_before_member_body', 'whats_new_my_friend' );July 26, 2015 at 4:42 pm #242440In reply to: Using a theme just for BuddyPress
kjgbriggs
Participantchecking the Functions file, there is a huge amount of php requirements specified at the top (13 of them), I am guessing this will mess with me trying to make a child theme out of it.
On a lighter note.
The CSS files are included separately so I have the styles for BBPress and BuddyPress separated out for me.I have tried adding these to my custom CSS, but they don’t seem to change that much, just the overall placement of things.
July 26, 2015 at 1:34 pm #242436In reply to: Using a theme just for BuddyPress
djsteveb
Participant@kjgbriggs – just took a look at your oblivion thing you like – it appears to be the forums layout you are concerned with here – which may end up being more of a “bbpress” theme-ing issue – not so much buddypress… last I checked you can add “bbpress” as an auto-addon for buddypress – but if it’s not profiles and activity stream stuff – you may need to look up some “bbpress” specific theme things if you run into issues – not sure if they go over all that at bbpress dot org these days or not.. I have not checked those forums / docs in years.
July 26, 2015 at 10:56 am #242427In reply to: Using a theme just for BuddyPress
kjgbriggs
ParticipantSorry for not providing enough info.
My main theme is called Divi and is created by Elegant Themes.
The theme I want to use just for BuddyPress stuff is called Oblivion and is created by Sky Warrior Themes.An example of the BuddyPress forums nd layouts is here on the Oblivion demo:
http://skywarriorthemes.com/oblivion/forums/
I just want the styling for the BuddyPress and BBPress stuff from Oblivion in Divi.
I did a bit of Googling and came to the conclusion that the best way to do this was to use a Child Theme.
Divi is updated quite a lot so I would either have to not update anymore or lose the styling if I were to add the styles to Divi directly.
There is little information I can find on having a child theme for specific things such as buddyPress though and I am unsure of how to do it.
July 25, 2015 at 9:18 pm #242421In reply to: Registration issues
djsteveb
Participant@rochellebarlow
You need to direct this question to the “OptimizeMember” plugin writer.I will suggest if you do not find it easy to work with that one, perhaps look into others like “s2member” or the membership plugins from wpmudev – and others.
Some places provide better tutorials and support than others – some are easier to work with than others.
This is not really a buddypress issue however I do not believe.
(I am not a bp dev, just another random internet user of bp – and I have not looked into your particular optimize things)
July 25, 2015 at 9:08 pm #242420In reply to: Rename nav tabs based on member type
danbp
ParticipantHi @maelga,
Querying by member type is explained here:
Then, you’ll have to create a custom function to get a navbar specific to each member type.
July 25, 2015 at 8:55 pm #242418In reply to: Using a theme just for BuddyPress
djsteveb
Participant@kjgbriggs – setting up a child theme is just a way to essentially make a new theme – using another “parent” as your template. When you activate, it’s just ONE theme that it handling everything for your wp/bp site.
You do no provide enough details about your theme names, and what you like about the main one and the one that ‘looks better with buddyprees’ – however, if you just like the layout of the bp components with he second theme more, then yes I believe you could make a child theme from your primary theme, and then go into your secondary theme and start to pull some of the layout code for the bp specific components and add those to your main theme.
If it’s overall colors and such you are trying to mix, like have a red header for your main site and a blue header for your bp pages – that is not going to be so easy..
it’s easy to learn about child themes here: https://codex.wordpress.org/Child_Themes
and a little more digging to learn about bp specif pages and components here:
for minor changes you can keep things simple by activating your second theme that you like with the bp looking better, go to the bp pages where you like the layout, right click on the element that looks good and click inspect elements – this will give you the css rules that are working the way you like.. things like alignment properties, bold, colors perhaps – copy those – put them into your new child theme styles and such..
of course some things can be more tricky if your second theme has fancy functions.php, java and all that included.
-
AuthorSearch Results