(2013-08-23, 17:31:02)D.O. Wrote: is it possible to display a maximum number of posts in a tag page (e.g. index.php?id=my_news_page&tag=category) just like the NewsManager main page?
Added to the to-do list.
In the meantime you may want to patch the plugin:
Edit news_manager/inc/site.php, find this:
Code:
$posts = $tags[$tag];
Code:
$posts = array_slice($posts, 0, 10); // patch: max number of posts
or if you prefer to use the number selected for the main news page, insert this instead:
Code:
global $NMPOSTSPERPAGE;
$posts = array_slice($posts, 0, $NMPOSTSPERPAGE); // patch: max number of posts