Hello,
insert Alt Text to all images on the Real Estate manager modules
I will show for you for example for mod_realestate_manager_new_3.1
in file:
{site}/module/mod_realestate_manager_new/tmpl/default.php
You see:
Code: |
$selectstring = "SELECT h.id, h.houseid, h.htitle, h.description, h.broker, h.image_link, hc.idcat
nFROM #__rem_houses AS h
nLEFT JOIN #__rem_categories AS hc ON hc.iditem=h.id
nLEFT JOIN #__rem_main_categories AS c ON c.id=hc.idcat
nWHERE ($s) AND h.published=1
nORDER BY ".$sql_orderby_query." DESC LIMIT 0,$count;";
|
There are kye word "h.htitle"
after that we see:
Code: |
foreach ($rows as $row) {
|
so for you for tag image, image will look like:
Code: |
<img src="<?php echo $imageURL; ?>" hspace="15" vspace="2" border="0" height="<?php echo $coversize; ?>" alt="<?php echo $row->htitle; ?>" />
|
Thanks,
OrdaSoft team