Jump to content
xt:Commerce Community Forum

Einstellen wo Suchfunktion sucht


Mortymer

Recommended Posts

advanced_search_result.php

hier ein Ergänzung die nach hersteller name sucht:

$select_str = "SELECT distinct

p.products_id,

p.products_price,

p.products_model,

p.products_quantity,

p.products_shippingtime,

p.products_fsk18,

p.products_image,

p.products_weight,

p.products_tax_class_id,

p.manufacturers_id,

pd.products_name,

pd.products_short_description,

pd.products_description ";

$from_str = "FROM ".TABLE_PRODUCTS." AS p LEFT JOIN ".TABLE_PRODUCTS_DESCRIPTION." AS pd ON (p.products_id = pd.products_id) ";

$from_str .= $subcat_join;

// Trev change - searches for manufacturers name

$from_str .= " LEFT OUTER JOIN ".TABLE_MANUFACTURERS." AS man ON (p.manufacturers_id = man.manufacturers_id) ";

danach kommen dann die keyword algos:

//go for keywords... this is the main search process

darunter kannst Du alles mögliche einstellen

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...