Ok. I have gotten to resolve it. Using this code:
function set_posts_per_page_for_towns_cpt( $query ) {
if ( is_shop() || is_woocommerce() || is_product_category() || is_product_tag() ) {
$query->set( ‘posts_per_page’, ‘9’ );
}
}
add_action( ‘pre_get_posts’, ‘set_posts_per_page_for_towns_cpt’ );
Thank you anyway!