// disable tooltip
add_filter( ‘flatsome_follow_links’, ‘mabws_disable_tooltip’, 10, 2 ); // đây là tắt cho follow icon
add_filter( ‘flatsome_share_links’, ‘mabws_disable_tooltip’, 10, 2 ); // đây là tắt cho share icon
function mabws_disable_tooltip( $links, $args ) {
foreach ( $links as $key => $link ) {
// Remove title attribute for native tooltip.
if ( ! empty( $link[‘atts’][‘title’] ) ) {
$links[ $key ][‘atts’][‘title’] = null;
}

// Additionally remove tooltip class (optional).
if ( empty( $link[‘atts’][‘class’] ) ) continue;
$links[ $key ][‘atts’][‘class’] = implode( ‘ ‘, array_diff( explode( ‘ ‘, $link[‘atts’][‘class’] ), array( ‘tooltip’ ) ) );
}

return $links;
}