Author Topic: A Few Questions  (Read 4429 times)

0 Members and 1 Guest are viewing this topic.

Offline muhammet93

  • Newbie
  • *
  • Posts: 23
    • View Profile
A Few Questions
« on: July 25, 2010, 09:19:45 AM »
Hello again.
When the moouse comes on the picture, i want to see name of the picuture?
Likes at the www.resimli.net

Anothe thing, for example, picture's name is United States.Can we write it on keywords as united, states automatically?


Rembrandt

  • Guest
Re: A Few Questions
« Reply #1 on: July 25, 2010, 09:40:01 AM »
...
When the moouse comes on the picture, i want to see name of the picuture?
....
search in your Templates/media/jpg.html
Code: [Select]
<img src="{media_src}" border="1" alt="{image_name}"{width_height} /><br />and replace:
Code: [Select]
<img src="{media_src}" border="1" alt="{image_name}" title="{image_name}" {width_height} /><br />
mfg Andi

Offline muhammet93

  • Newbie
  • *
  • Posts: 23
    • View Profile
Re: A Few Questions
« Reply #2 on: July 25, 2010, 02:15:37 PM »
It worked on details page.I want it also working on category page.

Rembrandt

  • Guest
Re: A Few Questions
« Reply #3 on: July 25, 2010, 03:38:46 PM »
search in includes/functions.php:
$thumb "<img src=\"".$file_src."\" border=\"0\"".$width_height." alt=\"".format_text($image_name2)."\" />";
and replace:
$thumb "<img src=\"".$file_src."\" border=\"0\"".$width_height." alt=\"".format_text($image_name2)."\" title=\"".format_text($image_name2)."\" />";
search:
$thumb "<img src=\"".$file_src."\" border=\"".$config['image_border']."\"".$width_height." alt=\"".format_text($image_name2)."\" />";

and replace:
$thumb "<img src=\"".$file_src."\" border=\"".$config['image_border']."\"".$width_height." alt=\"".format_text($image_name2)."\" title=\"".format_text($image_name2)."\" />";

Offline muhammet93

  • Newbie
  • *
  • Posts: 23
    • View Profile
Re: A Few Questions
« Reply #4 on: July 25, 2010, 04:28:13 PM »
It worked.Thx a lot.