Hi @unknownman888,
Yes, you can use the code snippet below to skip hiding some optional fields, including the order notes field:
/**
* Skip hiding optional fields with the "+ add" buttons.
*/
function fluidcheckout_add_optional_fields_skip_list( $skip_list ) {
// $skip_list[] = 'field_id';
$skip_list[] = 'order_comments';
return $skip_list;
}
add_filter( 'fc_hide_optional_fields_skip_list', 'fluidcheckout_add_optional_fields_skip_list', 10 );
If you are unsure about how to add the code snippet to your website, check our article:
How to safely add code snippets to your WooCommerce website
I’m closing this ticket for now. If you need further assistance related to this issue, simply reply to this message to re-open it.
Best,
Diego.