Sounds like your programmers added the feature to have static images associated with each entry. Other than the country flag, the image comes from thumshots.org ,
Thumbshots can be disabled by editing /includes/config.php and setting $thumbshot to zero
This will cause the entrie's country flag to be shown as a small icon.
$thumbshot = 0;
To change how the entries look, , such as replace the flag with a specific image for each entry you would need to edit the /include/functions.php file.(make a back up just in case)
Near line #1237 find . . .
| Code: |
}else{
$htmlsrc .="><td valign=\"top\" width=\"99%\" class=\"" . $cell_color . "\">";
$htmlsrc .= "<img border=\"1\" src=\"./images/flags/".$sites_array["country"] . "\"";
$htmlsrc .= " hspace=\"5\" alt=\"";
$short_entry = eregi_replace(".gif", "", $sites_array["country"]);
$short_entry = eregi_replace("_", " ", $short_entry);
$htmlsrc .= $short_entry . "\" title=\"" . $short_entry . "\" />";
}
|
for example, to use image /SITE_PICS/1.jpg , /SITE_PICS/2.jpg etc for each site,
replace with..
| Code: |
}else{
$htmlsrc .="><td valign=\"top\" width=\"99%\" class=\"" . $cell_color . "\">";
$htmlsrc .="<a target=\"blank\" href=./out.php?ID=" . $sites_array[site_id] . ">";
$htmlsrc .= "<img border=\"1\" src=\"./images/SITE_PICS/".$sites_array[site_id]. ".jpg\"";
$htmlsrc .= " hspace=\"5\" alt=\"". stripslashes($sites_array["site_name"])."\" /></a>";
}
|