How can I remove or change the tooltip of an icon
How can I remove or change the tooltip of an icon
How can I remove or change the tooltip of an icon
With CSS – unfortunately no 🙁 The best way of course if you remove it just from HTML. Try to search for all files and look if there is a function like apply_filters() – it allows you to remove that attribute via preg_replace() or with even simpler way. If you can not find the way … Read more
I used this solution instead, within my single.php file: <?php //categories loop $categories = get_the_category(); $separator=”, “; $output=””; if($categories){ foreach($categories as $category) { $output .= ‘<a href=”‘.get_category_link( $category->term_id ).'” title=”‘ . esc_attr( sprintf( __( “%s” ), $category->name ) ) . ‘”>’.$category- >cat_name.'</a>’.$separator; } echo trim($output, $separator); } ?>
Jetpack for WordPress has hover cards for authors with gravatars. You could check for presence of data before echoing out the icon.
That’s the standard html5 input validation pop up for chrome, you will have to create the pop up from scratch unless your inputs can make use of html5 form validation such as type=email or required
Perhaps one of the things you did to templates was remove this from your footer? wp_footer();
Most of the jQuery UI is already built in to the WP admin and it is planned for the WP 3.3 update to include the rest of the UI. It is not until jQuery UI 1.9 final release where tooltips will be added in so perhaps after WP 3.3, jQuery UI 1.9 will be incorporated … Read more
Place this code in your functions.php theme (or child theme) file. It uses jQuery to add a new box above the Category div (<div id=”categorydiv” class=”postbox ” >). add_action( ‘admin_footer-post.php’, ‘wpse_99252_add_categories_title_attribute’ ); add_action( ‘admin_footer-post-new.php’, ‘wpse_99252_add_categories_title_attribute’ ); /** * Add a title attribute to categories box in the Post Editor. */ function wpse_99252_add_categories_title_attribute() { ?> <script … Read more
If your code is working in general, but not in WP then this is very likely caused by jQuery being run in no conflict mode by WP. You will need to use appropriate wrapper to use it as usual (with $ sign).
Add this code into your functions.php class Tooltips_Walker extends Walker_Nav_Menu { function start_el(&$output, $item, $depth, $args) { $classes = empty ( $item->classes ) ? array () : (array) $item->classes; $class_names = join( ‘ ‘ , apply_filters( ‘nav_menu_css_class’ , array_filter( $classes ), $item ) ); ! empty ( $class_names ) and $class_names=” class=””. esc_attr( $class_names ) … Read more