Solved
https://wpsnacks.com/wordpress-tutorials/how-to-add-custom-pagination-page-navigation-to-woocommerce/
Step 1:
You should download and install WP-PageNavi into your WordPress plugins directory and then activate the plugin in your WordPress Dashboard.
Step 2:
Once it is installed, you can set up the options using the settings page for this plugin in your WordPress Dashboard.
Step 3:
After you have the settings set up, add this code below to your current theme’s Functions.php file to have WP-PageNavi’s pagination replace WooCommerce’s default page navigation:
`/**
* Replace WooCommerce Default Pagination with WP-PageNavi Pagination
*
* @author WPSnacks.com
* @link https://www.wpsnacks.com
*/
remove_action(‘woocommerce_pagination’, ‘woocommerce_pagination’, 10);
function woocommerce_pagination() {
wp_pagenavi();
}
add_action( ‘woocommerce_pagination’, ‘woocommerce_pagination’, 10);
That’s it, now you have a much better looking and easier to use Pagination Page Navigation on your WooCommerce Product Archive Pages.