Remove hover tooltip | WordPress.org

[ad_1]

Plugin Contributor
dwpriv

(@dwpriv)

You have to use a hook that either enqueues a CSS file for the admin back end or one that echos an inline style. Try this snippet that does the latter

//Hide WPO PDF Invoices ToolTip on the admin dashboard
add_action('admin_head', 'wpo_wcpdf_hide_admin_tooltip');
function wpo_wcpdf_hide_admin_tooltip() {
  echo '<style>
			#tiptip_holder.tip_bottom {
				display: none !important;
			}
		</style>';
}

If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

Thank you for your prompt reply and support @dwpriv

That worked perfectly.

Appreciate your time many thanks

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer