Usually a 'Row' is a category of products that constitute a line of seats in a theatre.
IMPORTANT: What this really means is ...we can change the status of ALL products in a given Category not necessarily a straight ROW category.
Admin>Products>
In fact there are 4 statuses to choose from
Hidden Status will hide the row seats completely
Blocked Seats will show grayed out seats for the whole row.
IMPORTANT:
Before you can change status of rows in Seat Plans you must set the 'manufacturers_id' to the category_id in the database. This can be arranged by running a SQL query:
UPDATE products
SET products.manufacturers_id=(SELECT products_to_categories.categories_id
FROM products_to_categories
WHERE products.products_id=products_to_categories.products_id);
You will find this query in the Admin>Backups folder.
update_row_status_manufacturers_id.sql