Hi @paulwan,
Yes, you can use the code snippet below to make those changes.
/**
* Change gift fields description.
*/
function fluidcheckout_change_gift_field_description( $gift_option_fields ) {
// Change gift message field args
if ( array_key_exists( '_fc_gift_message', $gift_option_fields ) ) {
$gift_option_fields[ '_fc_gift_message' ][ 'description' ] = __( 'Brief message', 'your-text-domain' );
}
// Change gift from field args
if ( array_key_exists( '_fc_gift_from', $gift_option_fields ) ) {
$gift_option_fields[ '_fc_gift_from' ][ 'description' ] = __( 'Name of who is sending the gift', 'your-text-domain' );
}
return $gift_option_fields;
}
add_filter( 'fc_gift_options_fields_args', 'fluidcheckout_change_gift_field_description', 300 );
If you are unsure about how to add the code snippet, check our article:
How to safely add code snippets to your WooCommerce website
Best,
Diego