Quote:
Originally Posted by iDHKHCM
thats just a quick change final image will look alot better i just wanted to know how i would change it. whats the initials for your site? P.S. ? i want to keep you guys in the final logo i use for sure. this mod is Awesome!
|
Hey, actually I just noticed a small error in my part. Anyways to add your own image change the following code in productSearch.php. The original lines are 51-56.
PHP Code:
if ($vbulletin->options['Prosperent_logoImage'] == TRUE)
{
?>
<td style="padding-right:5px;"><a href="http://community.prosperent.com" title="Prosperent Search"> <img src="http://community.prosperent.com/img/logo_small.png" /> </a></td>
<?php
}
Anyways change that too...
PHP Code:
if ($vbulletin->options['Prosperent_logoImage'] == TRUE)
{
?>
<td style="padding-right:5px;"><a href="http://community.prosperent.com" title="Prosperent Search"> <img src="<?php echo 'http://' . $_SERVER['HTTP_HOST'] . '/img/YOUR_IMAGE_NAME_HERE'; ?>"/> </a></td>
<?php
}
?>
Then just put your image into the img folder that came with the add-on and include your image name after the /img/ and make Logo_Image TRUE or 1 in your AdminCP and you should be good.