Knowledgebase » How to ... »
We currently don't have an integration with MailChimp within HBook. However, you can proceed as follows for adding a MailChimp newsletter subscription checkbox to the booking details form.
function add_mailchimp_to_details_form( $output ) { $output .= '<h3 class="hb-title hb-title-terms">Our newsletter</h3>'; $output .= '<p>'; $output .= '<label>'; $output .= '<input type="checkbox" name="mc4wp-subscribe" value="1" />'; $output .= 'Yes! Subscribe me to your newsletter.</label>'; $output .= '</p>'; return $output; } add_filter( 'hb_policies_area_markup', 'add_mailchimp_to_details_form' );