-
Slava Abakumov replied to the topic Get "Edit Cover Image" link outside of Buddypress page in the forum How-to & Troubleshooting 9 years, 10 months ago
The reason that it doesn’t work – it requires to be placed on a user BuddyPress profile page.
It usesbp_displayed_user_domain()function to generate the link, as there is no user on your custom page (it’s not BuddyPress or even WordPress) –bp_get_members_component_linkfunction produces nothing.There is no easy fix. You will need to create…[Read more]
-
Slava Abakumov replied to the topic Private Messaging AJAX in the forum Miscellaneous 9 years, 10 months ago
So far BuddyPress doesn’t support this out of the box and I don’t know such plugins.
But this is a good feature request, and I’m pretty sure that this will implemented eventually. Because we already have similar thing on Activity directory page.Here is the ticket that I created with this request.
PS Update to the latest BuddyPress 2.6.1.1 🙂
-
Slava Abakumov replied to the topic [Resolved] Looking for free Themes that allow change theme credits in footer in the forum Installing BuddyPress 9 years, 10 months ago
I personally use Hueman theme on my site, and it has an ability to redefine or clean the footer credits: http://take.ms/8y2CP
And it looks good with BuddyPress, and has interesting settings for WordPress itself. -
@mercime updated the Theme Compatibility page, on the BuddyPress Codex 9 years, 10 months ago
The pages under this section provide an overview of the BuddyPress theme compatibility layer first introduced in version 1.7.
An overview of theme compatibility is provided as a primer followed by a detailed […]
-
Paul Wong-Gibbs replied to the topic bp_activity_add strips html in the forum How-to & Troubleshooting 9 years, 10 months ago
The
contentproperty is run through KSES and the permitted HTML tags are set here: https://buddypress.trac.wordpress.org/browser/trunk/src/bp-activity/bp-activity-filters.php#L206You COULD unhook this function from the filter (see: lines 16-25, same file) but I would not recommend it, because other people will use this to inject malicious…[Read more]
-
Schweizer Solutions GmbH started the topic bp_activity_add strips html in the forum How-to & Troubleshooting 9 years, 10 months ago
Hello,
I have a problem with the bp_activity_add function. I try to save a activity with HTML code as content. But everytime I check the result on the stream, the HTML code is stripped.
The code I use to write to the stream:
[Read more]
$bp_activity_id = bp_activity_add(array (
'user_id' => 99,
'action' => '<a href="http://example.org/members/swiss/"… -
Henry Wright replied to the topic conflict buddyPress with woocommerce in the forum How-to & Troubleshooting 9 years, 10 months ago
settings will be lost if i change theme to twenty fifteen ??
In theory your settings shouldn’t be lost, but in reality they could well be lost depending on so many things. Always make a backup of your files and database before testing. Ideally don’t test in production; instead, set up a testing install.
-
Henry Wright replied to the topic conflict buddyPress with woocommerce in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi,
Does the problem happen if you deactivate those plugins and revert to the Twenty Fifteen theme?
-
Henry Wright replied to the topic [Resolved] If statement to only use certain bit of code on site activity feed? in the forum How-to & Troubleshooting 9 years, 10 months ago
if ( bp_is_activity_directory() ) {
// This is the activity dir.
} else {
// This isn't the activity dir.
}That should be what you need.
-
Henry Wright replied to the topic conflict buddyPress with woocommerce in the forum How-to & Troubleshooting 9 years, 10 months ago
What theme are you using? Can you also list the plugins you have active?
-
Henry Wright replied to the topic wp_insert_post posting duplicates in function in the forum How-to & Troubleshooting 9 years, 10 months ago
$post_ID = wp_insert_post($new_post1);
wp_insert_post( $new_post1 );You’ve used the function twice.
-
Henry Wright replied to the topic Action/Filter After activity is created? in the forum How-to & Troubleshooting 9 years, 10 months ago
Glad you got this sorted 🙂
-
David Cavins replied to the topic Help me sort out my BuddyPress install in the forum How-to & Troubleshooting 9 years, 10 months ago
To add your own create group button output function, unhook the current ones:
remove_action( 'bp_groups_directory_group_filter', 'bp_legacy_theme_group_create_nav', 999 );
remove_action( 'bp_groups_directory_group_filter', 'bp_group_backcompat_create_nav_item', 1000 );and add your own to
bp-custom.php:
add_action(…[Read more] -
David Cavins replied to the topic Link to User's Group's Forums in the forum How-to & Troubleshooting 9 years, 10 months ago
Menus aren’t very php-friendly, usually, but you could do something like this:
[Read more]
<?php
if ( groups_is_user_member( bp_loggedin_user_id(), $group_id_of_group_A ) ) {
$group = groups_get_group( array( 'group_id' => $group_id_of_group_A ) );
?>
<li><a href="<?php echo bp_get_group_permalink( $group ) . 'forum/'; ?>"><?php bp_group_name( $group )… -
David Cavins replied to the topic Confirmation Email in the forum Requests & Feedback 9 years, 10 months ago
I’m not sure what behavior you’re aiming for, but this snippet will disable the confirmation email and log the user in automatically upon successful registration.
<?php[Read more]
add_action( 'bp_core_signup_user', array( $this, 'disable_validation_of_new_users' ) );
add_filter( 'bp_registration_needs_activation', '__return_false' );
add_filter(… -
Infinity Group US's profile was updated 9 years, 10 months ago
-
End of Lease Cleaning Melbourne's profile was updated 9 years, 10 months ago
-
dmrise's profile was updated 9 years, 10 months ago
-
Paul Gibbs updated the Version 2.5.0 page, on the BuddyPress Codex 9 years, 10 months ago
Version 2.5.0 is a major BuddyPress feature release.
For Version 2.5.0, the database version (_bp_db_version in wp_options) was 10469, and the Trac revision was 10625. Read the full ticket log […]
-
Boone Gorges updated the Version 2.5.3 page, on the BuddyPress Codex 9 years, 10 months ago
Version 2.5.3 is a BuddyPress maintenance and security release.
For Version 2.5.3, the database version (bp_db_version in wp_options) was 10469, and the Trac revision was r10802. Read the full ticket log […]
- Load More