|
in adm-misc.php i need to make a field labeled 'Google' for me to select in admin. code below:
<option selected=\"selected\">$setting</option>
<option value=\"google\">Google</option>
now in showproduct.php i need to make:
elseif ( $Globals['dealtype'] == "google" )
{
$dealtime_link = "<div align=\"center\">
<span class=\"{$Style['medium']}\"><b><a href=\"http://www.google.com/search?hl=en&q=$product_key\" target=\"_blank\">
<span style=\"color:#FF0000;\">{$Globals['pp_lang']['dealtime']} $manu $title</span></a></b></span>
</div><br />";
}
would this be all i need to edit to make a new product search or are there other files that are used?
|