be careful, when using social icons shortcodes in the footer (as well as in the header as an option),
the Facebook link might not open. Instead it will try to open the “www.yourhostname/yourfacebooklink”, which will direct you to your 404 page.
To fix it, edit the file wp-content/themes/neighborhood/includes/swift-framework/shortcodes.php
in the line 619 instead of
$social_icons .= '<li class="facebook"><a href="'.$facebook.'" target="_blank">Facebook</a></li>'."\n";
use:
$social_icons .= '<li class="facebook"><a href="https://www.facebook.com/'.$facebook.'" target="_blank">Facebook</a></li>'."\n";
the same correction should be applied to the line 672.