nicolas, thanks for the response. I looked at the link you provided but went ahead with my solution. I was originally going to add a Characteristic (show_quantity_field) but realized this would appear on the product page, so I decided to create a Category by the same name. If a product is added to the "show_quantity_field" category, I want the Quantity Field to be displayed; otherwise do not show it. To handle this, I edited the cart.php file in ../administrator/components/com_hikashop/helpers folder. After the ELSE statement at Line 101, I added code to query the appropriate hikashop tables (joining "hikashop_product_category" to "hikashop_category" and setting my WHERE clause to look for the product (via product_id) and the show_quantity_field category. Finally, I perform a test based on the results from the query. If I get a result, I execute your code that displays the Quantity Field; otherwise I skip the code. So far, it looks like it is working just the way I need it. I realize a MAJOR issue lies in the modification of cart.php--i.e. if I update the software, this file will be overwritten and my modification nixed. I'll look at a better solution that will handle that or spend some time on the URL you provided and implementing a solution that way. Since I'll be the one updating the software, I have enough 'red flags' to prevent me from blindly applying the update.