present group s content in context:SOLVED

Hello UNA team,
I couldnt find the blocks like albums in context or  discussins in context to put in side the group info page.
This is really needed. What is the method to put them there?

  • 269
  • More
Attachments
Replies (2)
    • You can do it only manually via Developer module, for example to place block with Posts posted into contest you need to get service block code from Developer > Pages > Posts > Posts in context > copy "Code" field contents then place new service block on profile page and insert the code you got from original block.

      • Thanks Alex I did with this code :)

        array (
          'module' => 'bx_albums',
          'method' => 'browse_context',
          'params' =>
          array (
            0 => '{profile_id}',
            1 =>
            array (
              'per_page' => 'bx_albums_per_page_profile',
              'empty_message' => false,
            ),
          ),
        )

        Login or Join to comment.