Comment 'That's what I'm usin...' to 'on profile timeline, how to make default posts by 'profile owner'?'
  • That's what I'm using too. The filters don't change. In the browser it says "javascript:void(0)" when I hover over the filters, but it doesn't do anything when I click it.

    • Hello @Genesis !

      You need to open this block on the Studio->Developer app->Pages->Persons->View Profile page. It has the Code value like:

      array (

       'module' => 'bx_timeline',

       'method' => 'get_block_view_profile',

       'params' => 

       array (

        0 => '{type}',

       ),

      )

      Change it to the:

      array (

       'module' => 'bx_timeline',

       'method' => 'get_block_view_profile',

       'params' => 

       array (

        0 => '{type}',

      1 => {content_id},

      2 => -1,

      3 => -1,

      4 => 'owner'

       ),

      )

      • When I put this code in, it gets stuck in infinite spinner. It doesn't save.