When I list all the catagories there is no description unless I hover the link and get a tooltip
How can I show the tooltip text as normal text?
How do I show the title from the a href as plain text....
Moderator: Thorsten
-
theohoutman
- Posts: 4
- Joined: Mon Jun 08, 2009 6:50 pm
Re: How do I show the title from the a href as plain text....
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
-
theohoutman
- Posts: 4
- Joined: Mon Jun 08, 2009 6:50 pm
Re: How do I show the title from the a href as plain text....
The latest stable release
Re: How do I show the title from the a href as plain text....
Hi,
okay, that's possibe. Where should the describtion appear?
bye
Thorsten
okay, that's possibe. Where should the describtion appear?
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
-
theohoutman
- Posts: 4
- Joined: Mon Jun 08, 2009 6:50 pm
Re: How do I show the title from the a href as plain text....
Prefered under the link. When possible it would be best if the links don't show up as a bulletlist. I have verry little php knowledge so I dunno how to do this myself..
Re: How do I show the title from the a href as plain text....
Hi,
open the file inc/Category.php and go to line 632. Change this line from
to
bye
Thorsten
open the file inc/Category.php and go to line 632. Change this line from
Code: Select all
$num_entries = sprintf(' (%d %s)', $number[$parent], $PMF_LANG['msgEntries']);Code: Select all
$num_entries = sprintf(' (%d %s)<br />%s', $number[$parent], $PMF_LANG['msgEntries'], $description);Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
-
theohoutman
- Posts: 4
- Joined: Mon Jun 08, 2009 6:50 pm
Re: How do I show the title from the a href as plain text....
Works like a charm! Thorsten, You're the best!