PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   ReviewPost How do I...? (http://www.photopost.com/forum/reviewpost-how-do-i/)
-   -   Redefine product search. (http://www.photopost.com/forum/reviewpost-how-do-i/135274-redefine-product-search.html)

joesoko February 3rd, 2008 03:28 PM

Redefine product search.
 
Last question for you...

Is the product search data defined anywhere else other than showproduct.php and adm-misc.php? I would like to add a field for if ( $Globals['dealtype'] == "google" ) with the same query data as reseller, amazon, etc. pointing to http://www.google.com/search?hl=en&q=$product_key and put the data in adm-misc.php for it to showup in admin.

Chuck S February 3rd, 2008 03:53 PM

There is no search in admin. Not quite sure what your doing but the dealtime link is something shown on showproduct.php it is not shown or has anything to do with search so I am getting a little lost.

joesoko February 3rd, 2008 03:59 PM

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?

Chuck S February 3rd, 2008 04:10 PM

Looks like it to me just an option to the select for that in the admin file and select your google box and then edit the showproduct file accordingly yes.


All times are GMT -5. The time now is 04:02 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97