S
S
Sergey Shkurikhin2020-10-19 22:34:41
WordPress
Sergey Shkurikhin, 2020-10-19 22:34:41

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:
5f8dea2fceb2d841243602.jpeg

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

1 answer(s)
S
Sergey Shkurikhin, 2020-10-20
@shkyrikhin99

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 question

Ask a Question

731 491 924 answers to any question