Answer the question
In order to leave comments, you need to log in
How to remove the tooltip in the category description menu?
In the description of the categories there are short codes of the table, etc... And in the menu, when you hover over the mouse, this hint pops up:
Tell me how this can be disabled in css or something else...
Answer the question
In order to leave comments, you need to log in
Arrived to insert these filters into functions does not help...
/*удаляем title рубрики*/
function removeTitle($str){
$str = preg_replace('#title="[^"]+"#', '', $str);
return $str;
}
add_filter("wp_list_categories", "removeTitle");
//Удаляем title в виджете "рубрики"
function wp_list_categories_remove_title_attributes($output) {
$output = preg_replace('` title="(.+)"`', '', $output);
return $output;
}
add_filter('wp_list_categories', 'wp_list_categories_remove_title_attributes');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question