Comment to 'Problems with displaying Latest Posts and Discussions with Recent Posts.'
  • Back with an update as I know a bit more now. Those posts / discussions that mentioned above did not have any image uploaded when they were created. This is why I didn't like the way they displayed. When one adds an image, it looks great.

    My question now is 'can we make a default image for posts and for discussions so that they are used if the poster does not include an image"?

    Thanks!

    • Hello @Te Ara Paerangi Community !

      You may use the "showcase" mode in the settings of the block in the Developer app. Then the discussion post without image will have the default blue thumb. How to do that (for example you want to change the view of New Discussions block in the Homepage):

      1) In the Developer app go to the Pages->System->Homepage area.

      2) Open the block settings.

      3) Change the content of the Code field from this value:

      array (

       'module' => 'bx_forum',

       'method' => 'browse_index',

       'params' => 

       array (

      0=> false,

        1 => false,

        2 => true,

        3 => false,

       ),

      to this one:

      array (

       'module' => 'bx_forum',

       'method' => 'browse_index',

       'params' => 

       array (

        'unit_view' => 'showcase',

        1 => false,

        2 => true,

        3 => false,

       ),