Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • @brittonk

    Participant

    I found it on your ticket system actually so it looks like you guys are on top of it

    https://buddypress.trac.wordpress.org/changeset/8828

    @brittonk

    Participant

    Found a solution. The code should be”

    		// Because the whole tree has not been loaded, we manually
    		// determine depth
    		$depth = 1;
    		$parent_id = (int) $activities_template->activities[0]->secondary_item_id; 
    		while ( $parent_id !== (int) $activities_template->activities[0]->item_id ) {
    			$depth++;
    			$p_obj = new BP_Activity_Activity( $parent_id );
    			$parent_id = (int) $p_obj->secondary_item_id; 
    		}
    		$activities_template->activity->current_comment->depth = $depth;
    	}

    @brittonk

    Participant

    In an ideal world, yes.

    Unfortunately that author doesn’t seem to do anything for free and it isn’t currently one of their paid “Add-ons”

    That said, the most popular buddypress themes automatically integrate rtMEdia so I would imagine that the majority of buddypress users are running it for their user photo galleries which is why I’m here.

    @brittonk

    Participant

    This thread can be closed. I found the solution. If anyone else happens upon this thread, I needed to create a file /plugins/bp-custom.php

    with this in it:

    <?
    define ( 'BP_ENABLE_ROOT_PROFILES', true );
    ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Skip to toolbar