How do I remove the folder images on the front page.
I edited the categories. Removed 'folder.gif' but they still appear on the page.
Is this a cache problem? I cleared my browser cache without luck.
Someone please help.
Binto
How do I remove the folder images on the front page.
I edited the categories. Removed 'folder.gif' but they still appear on the page.
Is this a cache problem? I cleared my browser cache without luck.
Someone please help.
Binto
in the admin setup page, leave the path to image category blank.
hart
Hart,
Doing this leaves broken image marks.
I will try to replace folder.gif with a transperent 1x1 image.
Thanks all the same
Binto
there is somewhere in the php files where the script call up the image folders, if we could just double slash it out it would solve the problem. I just don't recall which folder.
Try to look for it in msg.php in the themes folder, and do a search for image folder or img src tags.
Binto,
Open category.class.php in lib folder (patch 1), then close line 516-521 like this :
/*if($this->show_image == false) $image = "";
else {
if($cat_image=="") $cat_image = $this->default_image;
else $cat_image = $this->image_path.$cat_image;
$image = "<img src='$cat_image'>";
}*/
Sofiah