Jump to content
xt:Commerce Community Forum

Specials mehr als ein Artikel in der Box


dfluess

Recommended Posts

Danke, hab ich erkannt, mir angesehen und mit dem Beispiel der Specials verglichen. Trotzdem finde ich den Faden nicht wirklich, denn meine Stärke ist nicht gerade PHP. Vermutlich ein ganz einfaches Ding wenn man weis wo man ansetzen muss. Immer die vier letzten Artikel anzeigen. Wie geht das wohl? :confused:

if ($random_product = xtc_random_select("select
p.products_id,
pd.products_name,
p.products_price,
p.products_tax_class_id,
p.products_image,
s.expires_date,
p.products_vpe,
p.products_vpe_status,
p.products_vpe_value,
s.specials_new_products_price
from ".TABLE_PRODUCTS." p,
".TABLE_PRODUCTS_DESCRIPTION." pd,
".TABLE_SPECIALS." s where p.products_status = '1'
and p.products_id = s.products_id
and pd.products_id = s.products_id
and pd.language_id = '".$_SESSION['languages_id']."'
and s.status = '1'
".$group_check."
".$fsk_lock."
order by s.specials_date_added
desc limit ".MAX_RANDOM_SELECT_SPECIALS)) {

$box_smarty->assign('box_content',$product->buildDataArray($random_product));[/php]

Link to comment
Share on other sites

Also zur Darstellung in der Box reichts wohl nicht. Muss da nicht noch eine Schleife rein? In der Box für best_sellers steht:

"{foreach name=aussen item=box_data from=$box_content}"

Wenn ich das in die in specials Box einfüge, dann funktioniert es nicht. Es wird EIN Artikel 17x ausgegeben. Sorry kann jemand helfen?

Link to comment
Share on other sites

  • 2 weeks later...

Archived

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

×
  • Create New...