RE: Change alt="" in all pictures!
Wizzud <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <4061331be66791d7a180745e74c50225@osCommerce-Forums> |
This message was sent from: Features
http://forums.oscommerce.com/viewtopic.php?p=186884#186884
----------------------------------------------------------------
I think what you want to do is ...
In [b]includes/functions/html_output.php[/b] ...
Change
[code]function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') {[/code]
to
[code]function tep_image($src, $alt = 'Sklep internetowy', $width = '', $height = '', $parameters = '') {[/code]
Change
[code]function tep_image_submit($image, $alt = '', $parameters = '') {[/code]
to
[code]function tep_image_submit($image, $alt = 'Sklep internetowy', $parameters = '') {[/code]
Change
[code]function tep_image_button($image, $alt = '', $parameters = '') {[/code]
to
[code]function tep_image_button($image, $alt = 'Sklep internetowy', $parameters = '') {[/code]
Change
[code]function tep_draw_separator($image = 'pixel_black.gif', $width = '100%', height = '1') {
return tep_image(DIR_WS_IMAGES . $image, '', $width, $height);
}[/code]
to
[code]function tep_draw_separator($image = 'pixel_black.gif', $width = '100%', height = '1') {
return tep_image(DIR_WS_IMAGES . $image, 'Sklep internetowy', $width, $height);
}[/code]