How to get rid of unwanted pagination controls for Pages that use CM1 List Widgets

Percussion’s List widgets didn’t always support Pagination. Depending on how the original Designer implemented templates, as Customer’s upgrade or patch, they sometimes discover that lists that didn’t have pagination suddenly display pagination controls as Pages are published after an upgrade or patch.

The fix for this issue is relatively easy. Edit the Page and then copy and paste the below code into the affected Page’s - Actions-> Metadata-> Additional Code->Additional Head Content box.

<style>
.perc-pagination-container{ 
display:none; 
}
</style>

Save the Page or Template and re-publish the Page or in the case of a Template, related pages.

This should remove the unwanted pagination controls. Alternatively, this style could be added to your site’s Theme under Design->web_resources->themes->[your theme]->[your theme css] and an incremental/full publish could be run to push the updated theme css to the web server.

-n