From 5fb215c7fd12299bb16f2704afa08374271afd63 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Sun, 29 Jun 2025 23:27:38 -0700 Subject: [PATCH] fix variant type id vs attribute type id --- templates/element/ProductCategoryVariants/form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/element/ProductCategoryVariants/form.php b/templates/element/ProductCategoryVariants/form.php index 3485f4c..43cd665 100644 --- a/templates/element/ProductCategoryVariants/form.php +++ b/templates/element/ProductCategoryVariants/form.php @@ -6,6 +6,6 @@ echo $this->Form->control('name'); echo $this->Form->control('product_category_id', ['options' => $productCategories, 'empty' => true]); echo $this->Form->control('product_id', ['options' => $products, 'empty' => true]); -echo $this->Form->control('attribute_type_id'); +echo $this->Form->control('variant_type_id'); echo $this->Form->control('enabled'); ?> \ No newline at end of file