kolle Posted June 26, 2004 Report Share Posted June 26, 2004 hallo leute, kleines randproblem: die box warenkorb soll erst angezeigt werden, wenn etwas darin ist (ansonsten unsichtbar sein). unter osc ist das problem wie folgt gel?st (danke an linda mcgrath): Code: if ($cart->count_contents() >= 1) { require(DIR_WS_BOXES . 'shopping_cart.php'); } meine frage: wie krieg ich's unter xtc hin? in osc wird der warenkorb in der column_left (oder right) aufgerufen. wo mu? ich das in xtc machen? in der application_top? fragen ?ber fragen... danke f?r jeden tip kolle Link to comment Share on other sites More sharing options...
Guest HHGAG Posted June 26, 2004 Report Share Posted June 26, 2004 Du musst es auf's Template anpassen. XT:C ist NICHT osc Link to comment Share on other sites More sharing options...
kolle Posted June 26, 2004 Author Report Share Posted June 26, 2004 das ging ja schnell, danke hhgag! schon klar, da? xtc nicht osc ist, daher ja die frage. du meinst also, ich mu? den aufruf in die index.html integrieren? etwa so: code: if ($cart->count_contents() >= 1) { require($BOX_CART'); } bitte mal nen konkreten tip. auf xtc umstellen geht leider nicht von jetzt auf gleich... danke kolle Link to comment Share on other sites More sharing options...
Hubi Posted June 26, 2004 Report Share Posted June 26, 2004 In der appli_top eine Variable an Smarty ?bergeben if ($cart->count_contents() >= 1) { $smarty->assign('show_cart', 'true'); } und dann in der index.html Deines Templates {if $show_cart eq 'true'} {boxCART} {/if} Link to comment Share on other sites More sharing options...
kolle Posted June 26, 2004 Author Report Share Posted June 26, 2004 sau stark, danke hubi! das template system ist ja ein segen f?r jeden designer (gegen?ber osc), aber bis ich da durchsteige dauerts offenbar noch 'n paar momente ;-) also, besten dank nochmal kolle Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.