on profile timeline, how to make default posts by 'profile owner'?
By default it goes to all posts, then I need to click on the three dots to filter to posts by 'profile owner'. How do I make posts by 'profile owner' the default. In fact, when I click on the different filters, nothing changes.
-
-
·
LoneTreeLeaf
- ·
I'm not getting that on my instance of UNA, here is what my block setup looks like https://i.imgur.com/w3pduI1.png
-
·
LoneTreeLeaf
-
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.
-
-
·
LeonidS
-
·
In reply to Genesis
- ·
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'
),
)
-
·
LeonidS
-
- · Genesis
-
·
In reply to LeonidS
- ·
When I put this code in, it gets stuck in infinite spinner. It doesn't save.