-
David Cavins replied to the topic Wiki within Each Group in the forum How-to & Troubleshooting 8 years, 9 months ago
I’d use BuddyPress Docs for this purpose, but I’m a fan of and contributor to that plugin. It’s great for creating organized shared libraries with tags and search ability.
If you’d rather it be more forum-like, use bbPress.
-David
-
David Cavins replied to the topic set a default tab for non friends in the forum How-to & Troubleshooting 8 years, 9 months ago
What about using a custom member front page? Then you’d have total flexibility:
Custom Front Pages for your users profilesOtherwise, I think you could conditionally filter
bp_displayed_user_get_front_templateto specifymembers/single/activity.phpfor self and friends andmembers/single/profile.phpfor…[Read more] -
David Cavins replied to the topic Bullet Points on the Buddypress Menu in the forum How-to & Troubleshooting 8 years, 9 months ago
Regarding your first question, it appears that your theme is adding marks to your navigation menu. You’ll need to inspect the element to see what rule is causing it, then override it. (Or choose a different theme.)
Regarding your second question, if your theme has a full-width page template, select it for your BuddyPress pages. If it doesn’t…[Read more]
-
David Cavins replied to the topic Correct CHILD-THEME dir doesnt work in the forum How-to & Troubleshooting 8 years, 9 months ago
HI @khappamj–
It sounds like you’re overriding the file the right way and at the right location. There must be some other reason the file isn’t being used. I’d try checking the file permissions to make sure that apache can read the file.
-
David Cavins replied to the topic Permalinks slugs in the forum How-to & Troubleshooting 8 years, 9 months ago
Hi @snecz–
Yes, you can filter the starred slug using the
bp_get_messages_starred_slugfilter. Unfortunately, the ‘sentbox’ slug is not currently customizable.Here’s an example of how you might filter the starred slug:
[Read more]
add_filter( 'bp_get_messages_starred_slug', 'bp_codex_filter_starred_slug' );
function bp_codex_filter_starred_slug( $slug )… -
David Cavins replied to the topic There was a problem cropping your avatar, please try uploading it again in the forum How-to & Troubleshooting 8 years, 9 months ago
Were you adding the avatar upload to the registration form via some custom code? (I think I’ve seen plugins and such that do that.) It looks like you’ve removed that step for now, so maybe all is well?
-David
-
David Cavins replied to the topic Two different themes possible? in the forum How-to & Troubleshooting 8 years, 9 months ago
BuddyPress uses a theme compatibility layer, meaning it uses its own templates that are designed to drop into any theme. You can overload all kinds of template parts for BuddyPress:
However, there are plugins (I’ve not tested) that you could maybe get to work if you…[Read more]
-
David Cavins replied to the topic Non WP login page in the forum How-to & Troubleshooting 8 years, 9 months ago
This is sort of a big WordPress question that lots of people would like to change, but it’s not that easy. You could try using the plugin Theme My Login, which would need to be applied carefully, as it overlaps with BP a bit. https://wordpress.org/plugins/theme-my-login/ (I have no idea if this is a good plan, you’ll just have to try it.)
The…[Read more]
-
David Cavins replied to the topic Profile Page as Member Dashboard in the forum How-to & Troubleshooting 8 years, 9 months ago
There’s no way to do that via shortcode as far as I know, but lots of ways to do it via theme. You could apply a page template to the “members” page to modify what it seen. You could also overload the template at
/buddypress/members/single/home. Read more about the template…[Read more] -
David Cavins replied to the topic use group field under registration form as couple, men , women in the forum Installing BuddyPress 8 years, 9 months ago
This is the codex article I was thinking of:
-
David Cavins replied to the topic Change Profile URL to WP Default Author URL in the forum How-to & Troubleshooting 8 years, 9 months ago
Sure, you can add a filter on the
bp_get_member_permalinkhook and do whatever you wish. The BP member profile is much richer than the the authors page, though–if you’re not using the member profile fully, are you sure you need BuddyPress for your site?For the second question, use the shortcut link: https://mysite.org/members/me which will…[Read more]
-
David Cavins replied to the topic use group field under registration form as couple, men , women in the forum Installing BuddyPress 8 years, 9 months ago
You can save extra things manually on the
bp_core_signup_userhook:
https://buddypress.trac.wordpress.org/browser/tags/2.9.1/src/bp-members/bp-members-functions.php#L1900But I imagine that the simpler answer would be to use Profile Fields. If you add profile fields to the base group, then they appear on the registration form and are saved at…[Read more]
-
David Cavins replied to the topic Make friend field visible only to account owner in the forum How-to & Troubleshooting 8 years, 9 months ago
Hi @paksunny–
#1 can be accomplished by adding this code to you
bp-custom.phpfile (or wherever you keep your customizations): https://gist.github.com/dcavins/c65f3856dd6ed5be37eef115ab09405a#2 Try this plugin: https://wordpress.org/plugins/buddypress-private-message-for-friends-only/
-David
-
David Cavins replied to the topic Warning when uploading cover photo/profile crop issues in the forum How-to & Troubleshooting 8 years, 9 months ago
Thanks for updating your support post (the original post was nice and thorough, too) with a follow-up. Best of luck getting it resolved.
-David
-
David Cavins replied to the topic How to make user profile/ activity page default home page for site in the forum How-to & Troubleshooting 8 years, 9 months ago
Thanks for the response. i’m glad to hear you were ale to come up with something that worked.
-David
-
David Cavins replied to the topic Category and tags conflict in the forum How-to & Troubleshooting 8 years, 9 months ago
Based on your other forum post, I’m guessing this is also a Buddyforms question, and your best bet is to contact them for support:
https://themekraft.com/buddyforms/ -
David Cavins replied to the topic I don't see fields from buddy in original posts in wp-admin in the forum How-to & Troubleshooting 8 years, 9 months ago
Hi @monetek–
Your best bet for support for Buddyforms is to talk to the developers directly. https://themekraft.com/buddyforms/
-
David Cavins replied to the topic Missing activity streams in the forum How-to & Troubleshooting 8 years, 9 months ago
@dhsllc: Any idea what changed? Was there an update or other change to the site?
-
David Cavins replied to the topic Warning: Do Not Download BuddyPress (unless you like headaches) in the forum How-to & Troubleshooting 8 years, 9 months ago
@saleaholic: Make sure that the pages exist, check that they’re selected in the BP Settings pane in wp-admin, and, finally, visit the WP Settings > Permalinks screen to make sure your permalink rules are up-to-date. Permalinks are the problem most of the time.
David
-
David Cavins replied to the topic Associate CPT to group in the forum How-to & Troubleshooting 8 years, 9 months ago
I’ve done something similar in the past that should get you started:
https://gist.github.com/dcavins/68554aae1d8b73260c30a31e28aeaeba - Load More
@dcavins
Active 1 week, 4 days ago