-
David Cavins replied to the topic Correct CHILD-THEME dir doesnt work in the forum How-to & Troubleshooting 8 years, 8 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, 8 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 -
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
Hi, that’s not possible as far as I know. You could use http://mysite.com/members/me as your site’s home address, though, since it will redirect to a user’s profile if they’re logged in or otherwise present the user with a log in screen, then redirect to their profile.
-David
-
David Cavins replied to the topic User with multiple groups (bbpress) in the forum How-to & Troubleshooting 8 years, 9 months ago
I’m confused about what you’re trying to do, but if you want to restrict access to forums, then, yes, private groups are an excellent option. First, create a forum in wp-admin, then create a private group. Then, in the group management tab, check the box “Yes, I want this group to have a forum” and select the forum you just created.
Then, only…[Read more]
-
David Cavins replied to the topic Please help! 404 Errors everywhere in the forum How-to & Troubleshooting 8 years, 9 months ago
It sounds like you need to change/update your permalink structure for your WordPress installation. Visit wp-admin > Settings > Permalinks to update.
-David
- Load More
@dcavins
Active 2 weeks, 1 day ago