You can fix this by editing wcff-options.php
Change lines 9 and 10
wp_register_style( 'wcff-style', plugin_dir_url( __FILE__ ) . '../assets/css/wcff.css' );
wp_enqueue_style('wcff-style');
to
function wccpf_register_styles() {
wp_register_style( 'wcff-style', plugin_dir_url( __FILE__ ) . '../assets/css/wcff.css' );
wp_enqueue_style('wcff-style');
}
add_action( 'wp_enqueue_scripts', 'wccpf_register_styles' );