DOCMan: How to remove tooltip?

Discuss the development and implementation of Joomla! components here.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
dewasalju
Joomla! Apprentice
Joomla! Apprentice
Posts: 11
Joined: Tue Nov 21, 2006 7:48 am

DOCMan: How to remove tooltip?

Post by dewasalju » Sun Jun 03, 2007 3:18 pm

I found that the tooltip that appears in docman page is quite annoying.. could someone please show how to remove it?

Thanks in advance.

User avatar
wood_flower
Joomla! Explorer
Joomla! Explorer
Posts: 292
Joined: Wed Nov 30, 2005 3:33 pm
Location: Hanoi, Vietnam
Contact:

Re: DOCMan: How to remove tooltip?

Post by wood_flower » Sun Jun 03, 2007 5:20 pm

File components/com_docman/themes/default/templates/documents/list_item.tpl.php: remove from line number 82 to 87

Code: Select all

 	if($this->theme->conf->item_tooltip) :
 		$this->item = &$this->doc;
 		$tooltip = $this->fetch('documents/tooltip.tpl.php');
 		$icon    = $this->theme->path."images/icons/16x16/tooltip.png";
 		echo $this->plugin('tooltip',  $this->doc->data->id, 'DOCMan Tooltip', $tooltip, $icon);
 	endif;
File components/com_docman/themes/default/templates/page_docbrowse.tpl.php: remove from line number 38 to 43

Code: Select all

<?php
if ($this->theme->conf->item_tooltip) :
    echo $this->plugin('overlib');
endif;

?>
File components/com_docman/themes/default/templates/page_docsearch.tpl.php: remove from line number 34 to 39

Code: Select all

<?php
if ($this->theme->conf->item_tooltip) :
    echo $this->plugin('overlib');
endif;

?>
File components/com_docman/themes/default/templates/page_msgbox.tpl.php: remove from line number 30 to 35

Code: Select all

<?php
if ($this->theme->conf->item_tooltip) : 
    echo $this->plugin('overlib');
endif; 

?>
Remove the file components/com_docman/themes/default/templates/documents/tooltip.tpl.php.

Please note that all file paths above are relative from your Joomla root dir (where file configuration.php exists).
http://designforjoomla.com/ - Visit now for:
- Professional Joomla templates
- Reliable Joomla extensions
- Joomla tutorials, tips and trick

User avatar
wood_flower
Joomla! Explorer
Joomla! Explorer
Posts: 292
Joined: Wed Nov 30, 2005 3:33 pm
Location: Hanoi, Vietnam
Contact:

Re: DOCMan: How to remove tooltip?

Post by wood_flower » Sun Jun 03, 2007 5:24 pm

Btw, you can turn off tooltip for DocMan document by:

1. Login to your Joomla admin panel then go to Components -> DocMan -> Themes.

2. Click the default theme then scroll to Document Item parameters group and select Hide for Tooltip parameter.
http://designforjoomla.com/ - Visit now for:
- Professional Joomla templates
- Reliable Joomla extensions
- Joomla tutorials, tips and trick

dewasalju
Joomla! Apprentice
Joomla! Apprentice
Posts: 11
Joined: Tue Nov 21, 2006 7:48 am

Re: DOCMan: How to remove tooltip?

Post by dewasalju » Mon Jun 04, 2007 3:09 am

It really helps.. thank you very much..

User avatar
TheLoveBosS
Joomla! Apprentice
Joomla! Apprentice
Posts: 29
Joined: Wed Mar 08, 2006 3:40 am

Re: DOCMan: How to remove tooltip?

Post by TheLoveBosS » Mon Aug 31, 2009 8:37 am

really thanks :) that help me much
Just Do what you can Do , Don't Stop and watch all Do , and you can't Do!

beskung
Joomla! Intern
Joomla! Intern
Posts: 62
Joined: Tue Jun 16, 2009 11:56 pm
Contact:

Re: DOCMan: How to remove tooltip?

Post by beskung » Tue Aug 06, 2013 7:52 am

Thanks you so much
http://www.speech.ac.th/ - การพูดบนเวที พิธีกร หลักสูตรสำหรับองค์กร

http://www.hpdcenter.com/ - ศูนย์พัฒนาศักยภาพมนุษย์


Locked

Return to “Components”