-
modemlooper replied to the topic manual bp_activity_add within bp_activity_before_save in the forum Installing BuddyPress 9 years, 10 months ago
This is wrong. You add action to blog post creation and then call bp activity add
-
@modemlooper updated the Member Types page, on the BuddyPress Codex 9 years, 11 months ago
BuddyPress 2.2 introduced the concept of member types. This functionality is outlined below.
Registering member types
BuddyPress itself does not register any member types. Plugins and themes can register […]
-
modemlooper replied to the topic This is why we can't have nice things in the forum Requests & Feedback 9 years, 12 months ago
Awesome
-
modemlooper replied to the topic in the forum modemlooper 10 years ago
How important is a JSON rest API to you?
Are you interested in developing mobile apps with BuddyPress? -
modemlooper replied to the topic "Add Media" button not working when Activity Streams is enabled in the forum How-to & Troubleshooting 10 years ago
If this is a 3rd party plugin issue you will ned to post support on their support forum.
-
modemlooper replied to the topic remove user role display in the forum How-to & Troubleshooting 10 years ago
are you running a cache plugin?
-
modemlooper replied to the topic Can i create custom taxonomy for buddypress activity posts ? in the forum Creating & Extending 10 years ago
Read through this for examples https://buddypress.org/support/topic/adding-a-second-element-for-posting-with-an-activity/
-
modemlooper replied to the topic How to sync BP profiles between two BP networks in the forum How-to & Troubleshooting 10 years ago
-
modemlooper replied to the topic remove user role display in the forum How-to & Troubleshooting 10 years ago
are you running a cache plugin?
-
modemlooper replied to the topic Rename "Add Friends" and "Cancel Friendship Request" in the forum How-to & Troubleshooting 10 years ago
You edit this text via a language file.
or wordpress.org/plugins/quick-localization/
-
modemlooper replied to the topic Rename "Add Friends" and "Cancel Friendship Request" in the forum How-to & Troubleshooting 10 years ago
You edit this text via a language file.
-
modemlooper replied to the topic BP-Album plugin conflict, page alignment shifts left in the forum How-to & Troubleshooting 10 years ago
Deactivate bp album if you are running BuddyPics
-
modemlooper replied to the topic BP-Album plugin conflict, page alignment shifts left in the forum How-to & Troubleshooting 10 years ago
Use BuddyPics plugin. It’s my fork and has fixes
-
modemlooper replied to the topic FYI: iOS 8 and changing avatars in the forum Miscellaneous 10 years ago
I think 8.1 fixed this. Please test iOS 8.1 and confirm
-
modemlooper started the topic FYI: iOS 8 and changing avatars in the forum Miscellaneous 10 years, 2 months ago
If your users are complaining they cannot upload an avatar there is a bug in iOS 8 file uploads. The upload will timeout and fail. Hopefully it will be fixed in iOS 8.1.
-
modemlooper replied to the topic Make an extra Site only with the post-form in the forum Creating & Extending 10 years, 2 months ago
You need to explain more about what you are trying to accomplish.
-
@modemlooper updated the Groups Loop page, on the BuddyPress Codex 10 years, 4 months ago
The site groups loop can be used to output a list of groups created on your site.
Standard LoopAccepted Parameters
Thebp_has_groups()
function will accept a number of parameters that will manipulate the […] -
modemlooper replied to the topic [Resolved] Disable group posts from main activity stream in the forum How-to & Troubleshooting 10 years, 5 months ago
function bp_filter_groups_from_activity( $a, $activities ) {
if ( bp_is_current_component( 'activity' ) ) {
foreach ( $activities->activities as $key => $activity ) {if ( $activity->component =='groups') {
unset( $activities->activities[$key] );
$activities->activity_count =…[Read more] -
modemlooper replied to the topic Add an Action when Profile field is updated in the forum Requests & Feedback 10 years, 6 months ago
array( $this is because code is inside a class and it’s referring back to itself
add_action( 'xprofile_set_field_data', array( $this, 'OnBuddyPressUserUpdate' ), 101 );
-
modemlooper replied to the topic Filtering bp_get_send_message_button()? in the forum How-to & Troubleshooting 10 years, 6 months ago
change whatever you want in the arguments
function filter_send_message_btn() {
$args = array(
'id' => 'private_message',
'component' => 'messages',
'must_be_logged_in' => true,
'block_self' => true,
'wrapper_id' => 'send-private-message',
'link_href' =>…[Read more] - Load More
@modemlooper
Active 9 months, 3 weeks ago