Thank you so much. I got our top bar to successfully transfer the name and email over to MailChimp. Here is the code that we used in the functions.php file.
add_action( ‘mctb_before_email_field’, function() {
echo ‘<input type=”text” name=”FNAME” placeholder=”Your Name” style=”max-width: 250px;”/>’;
});
add_filter( ‘mctb_subscriber_data’, function( $subscriber ) {
if( ! empty( $_POST[‘FNAME’] ) ) {
$subscriber->merge_fields[‘FNAME’] = sanitize_text_field( $_POST[‘FNAME’] );
}
return $subscriber;
});
You can see how it looks here: https://ari-hetra.wt-demo.com/
I just need to figure out how to move the arrow on the right, to the left.