How to remove numeric pagination and keep only "Load more" button in Unitheme2?

Hello,

I am using CS-Cart with the Unitheme2 theme.

In product category pages I currently have numeric pagination like:
1 2 3 4 5

I would like to remove the numeric pagination completely and keep only the “Load more” button.

So the behavior should be:

  • First products load normally
  • When clicking “Load more”, additional products appear
  • No numeric page navigation (1,2,3,4…) should be visible.

Is there a setting in Unitheme2 or CS-Cart to disable numeric pagination and use only “Load more”?

Thank you!

If you do not find an ability to disable it in the settings, just add the following code to the CSS section of the Theme editor

#ut2_pagination_block_bottom {
    display: none;
}