Hello,
Since my visitor need to select some custom fields, I want only to have the add to cart button on the detailed page.
How can I remove the add button from the other views?
Also the custom fields I don't want theme only on the detailed view
http://forum.virtuemart.net/index.php?topic=128401.0
You can prevent custom fields from displaying in the category view by a setting in Configuration/Shopfront/Product Listing
To remove the add to cart bar you can use template overrides or prevent the add to cart displaying using a CSS override:
.addtocart-bar {
display: none;
}
Hi
With your help I have got it working Thanks :-)