A quick jump into 1.5 bleeding and issues
-
I decided to jump into 1.5 and see what popped up on my site. Here are some of the things that didn’t work out of the box (Using Current WP and latest BP):
Plugins:
Bp-Like – Failed. via @hempsworth (will be updated soon according to him)
Activity-Stream-Bump-to-top failed. via @nuprn1 (Currently Rich is not updating this, but I hope somebody does for 1.5 as this is a most useful plugin)
External blog failed. via @bowromir
http://bp-tricks.com/featured/allow-users-to-add-their-rss-feed-to-their-profile-with-the-external-blogs-plugin/*********************
Bp-custom code that didn’t work:
Error:
Warning: Missing argument 10 for BP_Activity_Template::__construct(), called in /home/musicpln/public_html/wp-content/plugins/bp-custom.php on line 143 and defined in /home/musicpln/public_html/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php on line 115
Warning: Missing argument 11 for BP_Activity_Template::__construct(), called in /home/musicpln/public_html/wp-content/plugins/bp-custom.php on line 143 and defined in /home/musicpln/public_html/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php on line 115
Code in that section:
`
/* Group filtering */
$object = $bp->groups->id;
$primary_id = bp_get_group_id();
if ( ‘public’ != $bp->groups->current_group->status && groups_is_user_member( $bp->loggedin_user->id, bp_get_group_id() ) )
$show_hidden = true;
/* Note: any params used for filtering can be a single value, or multiple values comma separated. */
$defaults = array(
‘display_comments’ => false, // false for none, stream/threaded – show comments in the stream or threaded under items
‘sort’ => ‘DESC’, // sort DESC or ASC
‘page’ => 1, // which page to load
‘per_page’ => false, // number of items per page
‘max’ => 1, // max number to return
‘include’ => false, // pass an activity_id or string of ID’s comma separated
‘show_hidden’ => $show_hidden, // Show activity items that are hidden site-wide?
/* Filtering */
‘object’ => $object, // object to filter on e.g. groups, profile, status, friends
‘primary_id’ => $primary_id, // object ID to filter on e.g. a group_id or forum_id or blog_id etc.
‘action’ => ‘new_forum_topic’, // action to filter on e.g. activity_update, new_forum_post, profile_updated
‘secondary_id’ => false, // secondary object ID to filter on e.g. a post_id `Line 143:
` $activities_template = new BP_Activity_Template( $page, $per_page, $max, $include, $sort, $filter, $search_terms, $display_comments, $show_hidden ); `*****
The most unexpected thing for me was that BuddyPress asked me to “initialize it” and I had to walk through all of the steps as if it were a new/fresh buddypress install not an updgrade…. it didn’t wipe my databases, but I was afraid that it had… is this expected behavior?
For What It’s Worth…
- The topic ‘A quick jump into 1.5 bleeding and issues’ is closed to new replies.