Hey, yeah I’ve tried that but it doesn’t seem to work for me unfortunately. Nothing happens when I put this code in functions.php:
function wp_tag_cloud_remove_title_attributes($return) {
// This function uses single quotes
$return = preg_replace("<code>title='(.+)'</code>", "", $return);
return $return;
}
add_filter('wp_tag_cloud', 'wp_tag_cloud_remove_title_attributes');
I can change title color with elementor but I can’t hide the title itself. Any other ideas on how to solve this?