-
David Cavins replied to the topic Magic Quotes? Strip Slashes? Why is this an issue? in the forum How-to & Troubleshooting 8 years, 6 months ago
Thanks for the update!
-
Limber Gibson's profile was updated 8 years, 6 months ago
-
David Cavins replied to the topic Goodbye Buddypress? in the forum How-to & Troubleshooting 8 years, 6 months ago
Hi @VentureCore-
It seems like you can make avatars work remotely. Check
bp_core_fetch_avatar()for some filter opportunities. https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-core/bp-core-avatars.php#L98I’ve not done what you’re trying to do, but it seems that the filter points
bp_core_avatar_folder_url,bp_core_avatar_folder_dir…[Read more] -
David Cavins replied to the topic Wiki within Each Group in the forum How-to & Troubleshooting 8 years, 6 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, 6 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] -
Boone Gorges replied to the topic bp-core-catchuri.php | not Redirecting to content after login in the forum Requests & Feedback 8 years, 6 months ago
> I just want to say a big thank you from Boulder, CO. You guys are awesome!
Right back at ya!
It looks likely that the OAuth plugin is the culprit. I have not tested, but it looks like there’s a line in oauth2-provider/library/class-wo-api.php that redirects auth requests to
wp_login_url()and tries to guess the properredirect_toparameter,…[Read more] -
Boone Gorges replied to the topic Profile Fields Date format-> Range not working. in the forum How-to & Troubleshooting 8 years, 6 months ago
Sure, I’m happy to point you in the right direction.
The BuddyPress Custom XProfile Field Type plugin is probably a good one to start with. It uses the
BP_XProfile_Field_Typeclass to register its fields. It even has an existing Datepicker field that you can use as a starting place:…[Read more] -
David Cavins replied to the topic Bullet Points on the Buddypress Menu in the forum How-to & Troubleshooting 8 years, 6 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, 6 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, 6 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 )… -
Boone Gorges replied to the topic There was a problem cropping your avatar, please try uploading it again in the forum How-to & Troubleshooting 8 years, 6 months ago
> the form still doesn’t work with or without the avatar upload.
Could you say more about this? By “the form” you mean the *registration* form?
As David suggests above, BP doesn’t allow for avatar upload at the time of registration, at least not out of the box. This suggests to me that you have another plugin (or something in your theme) that i…[Read more]
-
David Gibson's profile was updated 8 years, 6 months ago
-
Boone Gorges replied to the topic Magic Quotes? Strip Slashes? Why is this an issue? in the forum How-to & Troubleshooting 8 years, 6 months ago
Ha. Yes, this is an old and annoying issue in WordPress and WP plugins.
That said, we have done extensive work in the past to ensure that quotes are stripped where necessary throughout various interfaces. If you can share more detail about exactly where you’re seeing the slashed content, we may be able to help figure out where things are going…[Read more]
-
Boone Gorges replied to the topic Custom tab and content on BP profile in the forum How-to & Troubleshooting 8 years, 6 months ago
As @shanebp notes, adding the tabs themselves is pretty straightforward. In addition to
bp_core_new_nav_item()etc, you might also look into the more all-encompassingBP_Componentclass. See https://codex.buddypress.org/developer/bp_component/, https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/.It’s the content…[Read more]
-
Boone Gorges replied to the topic User Follow Blog Categories and Tags in the forum How-to & Troubleshooting 8 years, 6 months ago
Hi @kevinc4m – The BuddyPress Followers plugin allows users on a multisite installation to follow specific sites: https://github.com/r-a-y/buddypress-followers
It sounds like this is not quite what you’re looking for – you want the ability to follow tags/categories, and it doesn’t sound like multisite is part of the equation – but this plugin may…[Read more]
-
Boone Gorges replied to the topic bp-core-catchuri.php | not Redirecting to content after login in the forum Requests & Feedback 8 years, 6 months ago
Can you share the format of the “view content” links in the digest emails? (I’m assuming you’re using buddypress-group-email-subscription – let me know if that’s correct.) They should have a redirect_to parameter, but it sounds like it’s not being respected or is being lost somehow.
Are you using any plugins that interfere with the way that WP…[Read more]
-
Boone Gorges replied to the topic Profile Fields Date format-> Range not working. in the forum How-to & Troubleshooting 8 years, 6 months ago
Hi @amitrwt – The ‘Start’ and ‘End’ fields in the BP admin settings define the start and end dates of a single datepicker. That is, if you want to have a datepicker, but you only want to show dates between the years 1970 and 1990, you’d use those dates as the Start and End.
If you want your users to be able to select start and end times, my best…[Read more]
-
Boone Gorges replied to the topic buddypress theme javascript error blocking backup buddy in the forum How-to & Troubleshooting 8 years, 6 months ago
Hi @mycraze – It sounds as something is failing to load the jquery-cookie script. BP attempts to do it in the function
bp_core_register_common_scripts(): https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-core/bp-core-cssjs.php?marks=54#L18The first thing to check is to see whether the page is attempting to load the script in the…[Read more]
-
Boone Gorges replied to the topic Profile buttons not working (fixed) in the forum How-to & Troubleshooting 8 years, 6 months ago
Hello @louisarthur – When you say that they’re “not clickable”, what do you mean? Are they
disabled– greyed out, and impossible to select? Or does it simply not do anything when you click them?You may have some JavaScript – perhaps in your theme – that is preventing the link clicks from working properly. Try disabling JS in your browser to see…[Read more]
-
Boone Gorges replied to the topic Profile Image Widget Question in the forum How-to & Troubleshooting 8 years, 6 months ago
To turn the image into a link, you’ll want something like this:
<div class="bp-login-widget-user-avatar">
<a href="<?php echo esc_url( bp_loggedin_user_domain() ); ?>">
<?php bp_loggedin_user_avatar( "type=full&width=200&height=200" ); ?>
</a>
</div>If adding this link causes other content to get pushed down on the page, it’s likely…[Read more]
- Load More