Jump to content
xt:Commerce Community Forum

kaufen im produktlisiting


Recommended Posts

ich möchte gerne im produklisting einen button kaufen haben!

in einigen beiträgen wird von einen "entsprechenden schalter" im backend bei produktlisting gesprochen. ich finde diesen schalter nicht.

wo kann ich einstellen das im produktlisting der "button in den warenkorbbutton" angezeigt wird???

ich habe probiert mir das script aus der product.html zu kopieren.

 {hook key=product_info_tpl_before_cart}


 {form type=form name=product action='dynamic' link_params=getParams method=post}

 {form type=hidden name=action value=add_product}

 {form type=hidden name=product value=$products_id}

 {$products_information}

 <p class="add-to-cart">{form type=text name=qty value=1} {css_button text=$smarty.const.BUTTON_ADD_CART type='form'}</p>

 {form type=formend}


{hook key=product_info_tpl_cart}

leider kommen dort einige fehlermeldungen wenn man versucht etwas

in den warenkorb zu legen.

benutzte xtc 4.1

danke holger

Link to comment
Share on other sites

Ansatz ist im Prinzip richtig,

allerdings müsste hier ( natürlich ) stehen:

{form type=hidden name=product value=$module_data.products_id}

=> module_data ist im Produktlisting ja immer voranzustellen

bzw. komplett:

{if $module_data.allow_add_cart eq 'true'}

{form type=form name=product action='dynamic' link_params=getParams method=post}

{form type=hidden name=action value=add_product}

{form type=hidden name=product value=$module_data.products_id}

{$module_data.products_information}

<table width="100%">

<tr>

<td style="padding-top:20px">{form type=text name=qty value=1 style='width:20px;'}</td>

<td>{css_button text=$smarty.const.BUTTON_CART type='form'}</td>

</tr>

</table>

{form type=formend}

{/if}

Grüsse

Link to comment
Share on other sites

  • 1 month later...

Archived

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

×
  • Create New...