Limiting Initial Product View

Is there a way to disallow the initial product view from adding to cart, but still allowing it to add to cart and show product options only on the detailed product page?

If you're talking about the product list pages, you will need to make modifications to whatever list template your are using.

Hi,



I found the following in product_list.tpl and it removed the add to card on the list view:



{assign var=“add_to_cart” value=“add_to_cart_$obj_id”}

{$smarty.capture.$add_to_cart}



Do you know where I can removed the drop down box from the initial list view as well?



Drew


[quote name='The Tool' timestamp='1321902585' post='126442']

If you're talking about the product list pages, you will need to make modifications to whatever list template your are using.

[/quote]

Ok, I got it, for future reference, the drop down exclude on the product list is in the same file:



{if !$smarty.capture.capt_options_vs_qty}

{assign var=“product_options” value=“product_options_$obj_id”}

{$smarty.capture.$product_options}



{assign var=“qty” value=“qty_$obj_id”}

{$smarty.capture.$qty}

{/if}


[quote name='synergy-gs' timestamp='1321907741' post='126447']

Hi,



I found the following in product_list.tpl and it removed the add to card on the list view:



{assign var=“add_to_cart” value=“add_to_cart_$obj_id”}

{$smarty.capture.$add_to_cart}



Do you know where I can removed the drop down box from the initial list view as well?



Drew

[/quote]