Group Timeline

What is the right Module and Settings to create a Timeline on a Group Page so that a Post created within a Group ONLY post to That Group's Timeline. 

All the Timeline Modules we have tried show the post of the main Timeline. 

Thank you

  • 461
  • More
Replies (8)
    • Hello William !

      There should be enough to have the active block "Post to feed" on the "View Group page". Check it via Stuido->Pages->Groups->View Group page area.

      • I cant add "profile feed" block to any page. But already added on some page. 

        • Hello teknist !

          By default, all apps have this block on their "View Unit" pages. But it was made definitely for similar pages because this block should take parameters which usually exist there like profile_id.

          • So, What can i do to add this?

            • Please specify if a user visits the homepage - what should he see on this block?

              • Sorry for late. :)

                On the homepage, there are the members posts. 

                I want to group home page, to be profile feed only. If cant be, no problem. :))

                • You need to go Studio->Developer->Pages->System area and choose there the Homepage. Then press "Add blocks" button. In the appeared Popup choose "service" block. Then edit this new block^ set the value "Timeline" for field "Module* and enter to the "Code" field the following code:

                  array (

                    'module' => 'bx_timeline',

                    'method' => 'get_block_view_profile',

                    'params' => 

                    array (

                      0 => 'bx_persons',

                      1 => {member_id}

                    ),

                  Make this block visible only for registered persons (because {type} can be defined only in the profile view page).

                  • Thank you Leonids

                    Login or Join to comment.