Hi Dik,
I figured this out for my website and hopefully I can help you.
Go to line 157 of the plugin file under includes elex-wfp-product-flexible-price.php
Delete the following to stop the minimum price from showing:
value="<?php echo strlen(wp_kses_post( $product_min_price ) ) === 0 ? 0 : wp_kses_post( $product_min_price ); ?>"
Then to add a placeholder text, put:
placeholder=”insert text”
before the input
closing tag like this – <input placeholder=”insert text” />
Hope that helped!