Hi,
Try this,
open up wp-content\themes\neighborhood\includes\swift-framework\page-builder\builder\shortcodes\tabs.php
in that file replace all the sanitize_title to remove_accents
for ex: in the line #19
you see something like this
$output .= "\n\t\t\t" . '<div id="'.sanitize_title($title).'" class="tab-pane">';
and change to this
$output .= "\n\t\t\t" . '<div id="'.remove_accents($title).'" class="tab-pane">';
there are 5 occurrence so change everything, I report this to the developer to, because usually sanitize_title will work. Let us hear some words from him too ๐
Happy weekend.
Thanks,
laranz.