-
modemlooper replied to the topic Double navigation bars after Buddypress update? in the forum How-to & Troubleshooting 10 years, 7 months ago
Contact theme developer and ask them to make their theme compatible with current BuddyPress. The template files supplied by Frisco are outdated.
-
modemlooper replied to the topic Double navigation bars after Buddypress update? in the forum How-to & Troubleshooting 10 years, 7 months ago
Switch to Twenty Twelve theme and check. I’m sure this was theme related.
-
modemlooper replied to the topic regarding bp_core_new_nav_item. in the forum Third Party Plugins 10 years, 7 months ago
missing something from bp_core_new_nav_item
function my_add_doc_nav() {
global $bp;bp_core_new_nav_item( array(
'name' => 'Document List',
'slug' => 'group-document-list',
'position' => 80,
'screen_function' => 'group_document_list_function_to_show_screen',
'default_subnav_slug' =>…[Read more] -
modemlooper replied to the topic Json api and buddypress in the forum How-to & Troubleshooting 10 years, 7 months ago
That plugin doesn’t have end points for BuddyPress
-
modemlooper replied to the topic Oh… Custom Sort of Group Members in the forum Creating & Extending 10 years, 7 months ago
if you need to filter the admin lists https://codex.buddypress.org/plugindev/add-custom-filters-to-loops-and-enjoy-them-within-your-plugin/
Plugin example: https://github.com/imath/bp-loop-filters
-
modemlooper replied to the topic Oh… Custom Sort of Group Members in the forum Creating & Extending 10 years, 7 months ago
pass comma list of group ids
$args = array(
'include' => '1,2,3'
);
if ( bp_has_groups ( $args ) ) { ... -
modemlooper replied to the topic in the forum modemlooper 10 years, 7 months ago
Thanks for suggesting features you would like.
-
modemlooper replied to the topic redirecting to old link, in the forum How-to & Troubleshooting 10 years, 7 months ago
What links are pointing to wrong url?
-
modemlooper replied to the topic in the forum modemlooper 10 years, 7 months ago
you get what you pay for. 😉
Its the only image plugin that works. I won’t add any features but may create a new paid plugin with album features
-
modemlooper replied to the topic in the forum modemlooper 10 years, 7 months ago
-
modemlooper replied to the topic in the forum modemlooper 10 years, 7 months ago
use my fork of bp-album+ https://github.com/modemlooper/BuddyPics
-
modemlooper replied to the topic in the forum modemlooper 10 years, 7 months ago
did you try https://github.com/buddypress/bp-attachments
-
modemlooper replied to the topic Json api and buddypress in the forum How-to & Troubleshooting 10 years, 7 months ago
BuddyPress doesn’t have an API, what are you using to get json?
-
modemlooper replied to the topic Manually create activity posts in the forum How-to & Troubleshooting 10 years, 7 months ago
If it’s deleted it’s gone. Still confused about why the date or specific activity is important. How would you get group info if there are no groups?
This is how you manually add activity with code: https://codex.buddypress.org/developer/function-examples/bp_activity_add/
-
modemlooper replied to the topic Manually create activity posts in the forum How-to & Troubleshooting 10 years, 7 months ago
I’m confused to why you need to recreate the group creation activity notice. When a user creates a group it posts an activity “xx created the group xx”
Also you seem to want an activity post to be sticky?
-
modemlooper replied to the topic Manually create activity posts in the forum How-to & Troubleshooting 10 years, 7 months ago
Not going to be easy. So, you want to turn group activity into user activity?
-
modemlooper replied to the topic Wants to rename "notification" tab in the forum Installing BuddyPress 10 years, 7 months ago
BP 1.9+
function custom_notification_menu_tabs(){
[Read more]
global $bp;
if ( bp_is_user() && bp_user_has_access() ) {
$count = bp_notifications_get_unread_notification_count( bp_displayed_user_id() );
$class = ( 0 === $count ) ? 'no-count' : 'count';
$bp->bp_nav['notifications']['name'] = sprintf( __( 'Alerts <span class="%s">%s</span>',… -
modemlooper replied to the topic Want to change members profile sub menu tab in the forum Installing BuddyPress 10 years, 7 months ago
function custom_profile_menu_tabs(){
global $bp;
$bp->bp_options_nav['profile']['blog']['name'] = 'posts';
}
add_action('bp_setup_nav', 'custom_profile_menu_tabs', 201); -
modemlooper replied to the topic Badly need some help with a profile field in the forum How-to & Troubleshooting 10 years, 7 months ago
<?php echo xprofile_get_field_data( 'name of field' );?>
-
modemlooper replied to the topic Add Friend, javascript override in the forum How-to & Troubleshooting 10 years, 7 months ago
Great!
- Load More
@modemlooper
Active 9 months, 3 weeks ago