- Published on
Disable taxonomy term pager in Drupal 8
In order to disable the pager on a taxonomy term list page, you can set the terms_per_page_admin
setting to a really high number.
In your settings.php
file, add the below line and tweak to your liking.
$config['taxonomy.settings']['terms_per_page_admin'] = 1000;