Quote:
Originally Posted by drex
is this to the original file or to the file of dnoyeb2002's?
the entire system is working fine except that i don't want it to resize the category images.
i tried just your part of the hack related to :
Find:
PHP Code:
$subcaticon = ereg_replace($vbart_options['vbartcatimgpathab'],"",$subcaticon);
$subcaticonimg = "<img title=\"".$subcatname."\" src=\"articles.php?action=thumbcat&id=".$subcatico n."\" border=\"0\" width=".$vbart_options['vbartssthumbwidth'].">";
Replace with:
PHP Code:
$subcaticonimg = '<img title="' . $subcatname . '" src="' . $subcaticon . '" border=0>';
and i still get a 'resized' category image at the top of the list...
check out x5world.com/articles.php and click on NAVIGATION category.
thanks
|
Looks like I missed one:
Find:
PHP Code:
$caticonc = ereg_replace($vbart_options['vbartcatimgpathab'],"",$caticonc);
$caticonimgc = "<img title=\"".$catnamec."\" src=\"articles.php?action=thumbcat&id=".$caticonc."\" border=\"0\" width=".$vbart_options['vbartssthumbwidth'].">";
Replace with:
PHP Code:
$caticonimgc = '<img title="' . $catname . '" src="' . $caticonc . '" border=0>';