Add Reviewer - CSS, and Results List Size?

Version 3.2.1.2

2 questions for the Add Reviewer feature.

  1. I try to add some CSS modifications to my custom CSS file, but they do not apply to this area. In specific, I am trying to add:

.pkpListPanelItem–reviewer__affiliation {
display: none;
}

  1. Is there a way to increase the number of paged results? Right now it seems to be 15. I want to make it unlimited so editors do not have to page through to see more reviewers.

I try to add some CSS modifications to my custom CSS file

The custom CSS file you can upload to Settings > Website > Appearance > Advanced only effects the reader frontend. The styles will not be loaded on the editorial backend. If you want to customize the editorial backend, you’ll need to build a plugin to load a stylesheet. You can learn more about plugins in the plugin guide.

Is there a way to increase the number of paged results?

You can write a small plugin that uses the API::users::reviewers::params hook to customize the count parameter in the reviewers API endpoint. Increase the count param in this hook to increase the number of results that are shown. Learn more about hooks.