Comment 'Hello @Genesis !Yo...' to 'on profile timeline, how to make default posts by 'profile owner'?'
  • 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'

     ),

    )