Hi Guys,
Anybody know how to remove the tool tips from the answers? I dont want it to link to the glossary at all....
Thanks in advance,
Andy
			
			
									
						
										
						Remove Tool Tip
Moderator: Thorsten
Re: Remove Tool Tip
Hi,
which version do you use?
bye
Thorsten
			
			
									
						
							which version do you use?
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
			
						amazon.de Wishlist
Re: Remove Tool Tip
Hi,
Version 2.8.24
Thanks
Andy
			
			
									
						
										
						Version 2.8.24
Thanks
Andy
Re: Remove Tool Tip
Hi,
open assets/template/default/index.tpl and remove
at the end of the file.
bye
Thorsten
			
			
									
						
							open assets/template/default/index.tpl and remove
Code: Select all
<script>
    $('.topten').tooltip();
    $('.latest-entries').tooltip();
    $('.sticky-faqs').tooltip();
</script>bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
			
						amazon.de Wishlist
Re: Remove Tool Tip
I have checked that file and cant see that section of code in there anywhere?
Am I going mad?
			
			
									
						
										
						Am I going mad?
Re: Remove Tool Tip
Hi,
sorry, that was for version 2.9, for 2.8 it's in artikel.tpl. Please remove
bye
Thorsten
			
			
									
						
							sorry, that was for version 2.9, for 2.8 it's in artikel.tpl. Please remove
Code: Select all
            <script>
                $(function(){
                    $('abbr[rel="tooltip"]').tooltip();
                });
            </script>Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
			
						amazon.de Wishlist
Re: Remove Tool Tip
In 2.9.11, it seems like you have to modify ./inc/PMF/Glossary.php and remove the for loop in insertItemsIntoContent().  Just removing the JS from the template didn't do it.