Forums | Mahara Community

Support /
Best way of showing up to 20+ journals on same page by deafult


Niklas Frost's profile picture
Posts: 25

15 September 2020, 22:14

Hi! When on the Journal overview Page on Mahara 19.10 

https://ourmahara.com/artefact/blog/index.php

we see only 1o of them.

There is a very convenient tab down to the right  - one click and we see the other 10 of 20. Nice feature!

....but we would like to have all 20 on the first page by default ( 0 r 50 to be honest) We do not mind the scroll.

Were in code or config can I best fix that? Any tip, anyone?

 

Best Regards, Niklas

 

Robert Lyon's profile picture
Posts: 757

16 September 2020, 8:20

Hi Niklas,

There is no config for this but you could try editing the default limits for the following pages

htdocs/artefact/blog/view/index.php

and change

   $limit = param_integer('limit', 10);

to

   $limit = param_integer('limit', 20);

and edit

htdocs/artefact/blog/index.php

and change

    'limit'  => param_integer('limit', 10),

to

    'limit'  => param_integer('limit', 20),

That may get what you need

Cheers

Robert

2 results