How to add in cs-cart 3 , options in product listing mod

How to add in cs-cart 3 , options in product listing mod. For my shop is very important thing.

Thank you

Replace /skins/base/customer/blocks/product_list_template/product_without_options.tpl

with code:





{** template-description:list_without_options **}



{if $settings.Appearance.in_stock_field == “N”}

{assign var=“show_product_amount” value=true}

{else}

{assign var=“show_product_amount” value=false}

{/if}

{include file=“blocks/list_templates/products_list.tpl”

show_name=true

show_sku=true

show_rating=true

show_features=true

show_prod_descr=true

show_old_price=true

show_price=true

show_clean_price=true

show_list_discount=true

show_discount_label=true

show_product_amount=$show_product_amount

show_product_options=true



show_product_edp=true

show_add_to_cart=true

show_list_buttons=true

show_descr=true

but_role=“action”

separate_buttons=true}

Does this show options on category pages?

Can you solve this problem? If you can solve it, please let me know.



I added [color=#282828][font=arial, verdana, tahoma, sans-serif]/skins/base/customer/blocks/list_template/[/font][/color]grid_list.tpl

{assign var=“sku” value=“sku_$obj_id”}{$smarty.capture.$sku}



on [color=#282828][font=arial, verdana, tahoma, sans-serif]/skins/base/customer/blocks/product_list_template/[/font][/color]products_multicolumns.tpl

show_sku=true



but still not working.







Thank you :)