i have added this code in the woocommerce-template.php
/**
* Replace WooCommerce Default Pagination with WP-PageNavi Pagination
*
*/
remove_action('woocommerce_pagination', 'woocommerce_pagination', 10);
function woocommerce_pagination() {
wp_pagenavi();
}
add_action( 'woocommerce_pagination', 'woocommerce_pagination', 10);
could this be why it doesn't remove the one under the page?
and i tried to edit in the archive-product.php, but nothing really happens, thanks for your help...