Well, the site review section actually only shows the uploaded photo to /images/featured/ID.jpg but it won't show any pic if you don't upload it. Wouldn't it also show thumbnail like regular listing though?
What I m trying to accomplish is to have the feature and review area to show thumbnail and or siteID pic uploaded if thumbnail does not work. I m trying the code and it seems that I m not doing it right.
In the review_inc.php line around 79, I have the following code.
| Code: |
$html .= "</ul></td>";
if (file_exists("./sitepic/$SiteID.jpg")){
$html .= "<td><table cellpadding=3><tr><td align=center valign=center class=whatText>
<a target=_blank href=./out.php?ID=$SiteID>
<img border=0 src=./sitepic/$SiteID.jpg alt=\"" . strtoupper($get_sites[1]) . "\">
</a></td></tr></table></td>";
}
else {
$html .="<img border=\"0\" align=\"top\" src=http://open.thumbshots.org/image.pxf?url=".
urlencode($sites_array["site_url"]) ."></a></td><td valign=\"top\" class=\"" . $cell_color . "\">";
}
|
Basically I just added the else there to see if I see any pic from thumbshots. It does not show correctly. I know I need to work on that a little bit more but I don't know anyting else

.
Any help would be appreciated. Thank you.