-
modemlooper replied to the topic Auto Join Groups in the forum Installing BuddyPress 9 years, 10 months ago
what about this one? https://wordpress.org/plugins/buddypress-groupomatic/
-
modemlooper replied to the topic Member Directory: Nav that filters members by first letter of last name in the forum Creating & Extending 9 years, 10 months ago
the way to do it is to get letter clicked, access db and collect user ID’s and then filter the loop with those IDs
-
modemlooper replied to the topic Member Directory: Nav that filters members by first letter of last name in the forum Creating & Extending 9 years, 10 months ago
the way to do it is to get letter clicked, access db and collect user ID’s and then filter the loop with those IDs
-
modemlooper replied to the topic How to update Change-Avatar Page after changing the avatar? in the forum How-to & Troubleshooting 9 years, 10 months ago
You would need to hook into the avatar save with something like xprofile_avatar_uploaded. Then from the cache docs wp_cache_post_change( $post_id )
function uncache_bp(){
$page_array = get_option('bp-pages');
wp_cache_post_change( $page_array['members'] );
}
add_action('xprofile_avatar_uploaded', 'uncache_bp');Not sure this will work as…[Read more]
-
modemlooper replied to the topic How to update Change-Avatar Page after changing the avatar? in the forum How-to & Troubleshooting 9 years, 10 months ago
You would need to hook into the avatar save with something like xprofile_avatar_uploaded. Then from the cache docs wp_cache_post_change( $post_id )
function uncache_bp(){
$page_array = get_option('bp-pages');
wp_cache_post_change( $page_array['members'] );
}
add_action('xprofile_avatar_uploaded',…[Read more] -
modemlooper replied to the topic Please help! in the forum How-to & Troubleshooting 9 years, 10 months ago
Sounds like front end submission might help https://wordpress.org/plugins/frontend-uploader/
Not sure that plugin would work. Its that or a custom BuddyPress component. https://codex.buddypress.org/plugindev/creating-a-custom-buddypress-component/
-
modemlooper replied to the topic Sub Navigation renaming in the forum How-to & Troubleshooting 9 years, 10 months ago
This is for the admin bar:
function custom_adminbar_titles() {
global $wp_admin_bar;$wp_admin_bar->add_menu( array(
'id' => 'my-account-groups-memberships',
'title' => 'new title here',
));
}
add_action( 'wp_before_admin_bar_render', 'custom_adminbar_titles' );This is for…[Read more]
-
modemlooper replied to the topic Sub Navigation renaming in the forum How-to & Troubleshooting 9 years, 10 months ago
function custom_adminbar_titles() {
global $wp_admin_bar;$wp_admin_bar->add_menu( array(
'id' => 'my-account-groups-memberships',
'title' => 'new title here',
));
}
add_action( 'wp_before_admin_bar_render', 'custom_adminbar_titles'… -
modemlooper replied to the topic Registration Form ShortCode in the forum How-to & Troubleshooting 9 years, 10 months ago
This might help http://buddydev.com/plugins/bp-ajax-registration/
-
modemlooper replied to the topic Profile menu! in the forum Creating & Extending 9 years, 10 months ago
There are BuddyPress menu items in the admin menu page
-
modemlooper replied to the topic Auto Refresh Private Messanges in the forum Creating & Extending 9 years, 10 months ago
Sure, look in the plugin code
-
modemlooper replied to the topic Load Newest in the forum How-to & Troubleshooting 9 years, 10 months ago
If you add filters into the loop then the Ajax load won’t get those. Search on how to add filters in a plugin
-
modemlooper replied to the topic Users collection tracker in the forum Installing BuddyPress 9 years, 10 months ago
Is it a button they click? How are these items displayed?
-
modemlooper replied to the topic Load Newest in the forum How-to & Troubleshooting 9 years, 10 months ago
Maybe I’m confused about “making it optional”
-
modemlooper replied to the topic Dear developers: Testing data and tools, please! in the forum Requests & Feedback 9 years, 10 months ago
You can remove bp css and then add your own style sheet
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {
wp_enqueue_style( ‘my-stylesheet’, WP_CONTENT_URL . ‘/themes/my-theme/style.css’ );
}
endif; -
modemlooper replied to the topic How can I get BuddyPress to remember the page of the directory I was reading? in the forum How-to & Troubleshooting 9 years, 10 months ago
Hmm, bp doesn’t save Ajax pagination to history api and doesn’t use any type of hash url scheme to manage it
-
modemlooper replied to the topic How can I get BuddyPress to remember the page of the directory I was reading? in the forum How-to & Troubleshooting 9 years, 10 months ago
Hmm, bp doesn’t save Ajax pagination to history api.
-
modemlooper replied to the topic Auto Refresh Private Messanges in the forum Creating & Extending 9 years, 10 months ago
-
modemlooper replied to the topic Load Newest in the forum How-to & Troubleshooting 9 years, 10 months ago
In admin BuddyPress settings click the settings tab and scroll to bottom and uncheck activity refresh setting
-
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 publish and then call bp activity add in your function
add_action(‘publish_{custom_post_type_name}’, ‘function_to_perform’);
- Load More
@modemlooper
Active 9 months, 3 weeks ago