Hey @baltazos , sorry for late reply. Now coming to your points, we are displayed all featured products first in order return by wc_get_featured_product_ids
functions. Although you can change it using follows filters –
apply_filters( 'wcfp_before_query_clauses_featured_product_ids', wc_get_featured_product_ids() ) // using to reorder products ids
apply_filters( 'wcfp_before_query_clauses_featured_product_ids_order', 'DESC' ) // using to change default order DESC/ASC
let me know if you have any queries.