HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux bsx-1-dev 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 9 10:15:05 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wordpress-tooltips/addons/tooltips_for_oceanwp.php
<?php
if (!defined('ABSPATH'))
{
	exit;
}

add_filter('wp_trim_words','tooltipsInContent',20,1);

function oeachwparchivetooltip()
{
	if (is_archive())
	{
	echo '<script type="text/javascript">';
?>
					jQuery(document).ready(function () {
						jQuery('.tooltipsall').each
						(function()
						{
						disabletooltipinhtmltagSinglei = jQuery(this).html();
						jQuery(this).replaceWith(disabletooltipinhtmltagSinglei);
						})
					})
<?php 
	echo '</script>';
	}
}

add_action('wp_footer','oeachwparchivetooltip');
add_filter( 'nav_menu_description', 'tooltipsmenucheckaddonpro' , 30, 1 );

function tooltipsmenucheckaddonpro( $description )
{
	 remove_filter('wp_trim_words','tooltipsInContent');
	 remove_filter('the_content','tooltipsInContent');
	 remove_filter('the_excerpt','tooltipsInContent');
	 remove_filter('the_title','tooltipsInContent');
	 
	 remove_filter('wp_trim_words','showTooltips');
	 remove_filter('the_content','showTooltips');
	 remove_filter('the_excerpt','showTooltips');
	 remove_filter('the_title','showTooltips');
	 
	 remove_filter('wp_trim_words','tooltipsInContent');
	 remove_filter('the_content','tooltipsInContent');
	 remove_filter('the_excerpt','tooltipsInContent');
	 remove_filter('the_title','tooltipsInContent');
	 
	 remove_filter('wp_trim_words','showTooltips');
	 remove_filter('the_content','showTooltips');
	 remove_filter('the_excerpt','showTooltips');
	 remove_filter('the_title','showTooltips');
	 
	 remove_action('wp_trim_words','showTooltips');
	 remove_action('the_content','showTooltips');
	 remove_action('the_excerpt','showTooltips');
	 remove_action('the_title','showTooltips');
	 
	 return $description;

}

return;