Thank you for sharing these details.
1) Change the text next to the privacy checkbox
- That text is coming from the field name for the "ChkPrivacy" field, in the "Campi ticket" custom field group.
( screenshot: hidden link )
2) change the color of the "submit" button to make it consistent with the rest of the site's design
- To make the submit button look consistent with the default green color button used on the website, you can include the following custom CSS code in the form:
.wpt-form-submit.btn-primary {
color: #ffffff!important;
border-width: 5px!important;
border-color: rgba(0,0,0,0);
border-radius: 5px;
letter-spacing: 2px;
font-size: 16px;
font-weight: 600!important;
text-transform: uppercase!important;
background-color: #62de9d!important;
}
.wpt-form-submit.btn-primary:hover,
.wpt-form-submit.btn-primary:focus {
background-image: initial!important;
background-color: #82ddb0!important;
}
3) stylize the fields after the "send" button. I can stylize the respective labels but not the fields
- I'm not exactly clear on what you mean by this. Currently, the "data-evento" field is set to get the default value from the shortcode [current_date format="U"], but as this shortcode is not registered the field is not showing correctly.
If your goal is to pre-fill the current date in that field, you can register a custom shortcode:
add_shortcode('wpv-post-today', 'today_shortcode');
function today_shortcode() {
$current_date = current_datetime();
$current_date_noon = $current_date->format( 'Y-m-d' ).' 00:00:00';
$datetime = new DateTime( $current_date_noon );
return $datetime->format( 'U' );
}
The above code snippet can be included through either Toolset's custom code feature ( ref: https://toolset.com/documentation/adding-custom-code/using-toolset-to-add-custom-code/ ) or through the active theme's "functions.php" file.
After that, you can add this new shortcode in the value attribute of that field, like this:
[cred_field field='data-evento' force_type='field' class='form-control' output='bootstrap' value='[wpv-post-today]']
I hope this helps and please let me know if you need any further assistance around this.