Hi,
Try this,
open up wp-content\themes\neighborhood\includes\swift-framework\page-builder\shortcodes\tabs.php
in that file replace all the sanitize_title to remove_accents
for ex: in the line #26
you see something like this
$output .= “\n\t\t\t” . ‘<div id=”‘ . preg_replace( ‘/\s+/’, ‘-‘, sanitize_title($title) ) . ‘” class=”tab-pane load”>’;
and change to this
$output .= “\n\t\t\t” . ‘<div id=”‘ . preg_replace( ‘/\s+/’, ‘-‘, remove_accents($title) ) . ‘” class=”tab-pane load”>’;
there are 6 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 ๐
Let us know,
Thanks,
laranz.