Hi, it's in the header.
I'm just using the code on this page; https://metabox.io/docs/mb-settings-page/
I have fixed it now using the following code;
<?php $field_id = 'twitter-url';
if ( isset( $settings[$field_id] ) ) {
echo '<li><a href=" ' . $settings[$field_id] . '"><i class="fa fa-twitter"></i></a></li>'; } ?>
How do I echo nothing if the field is empty?