Add WooCommerce-style featured image and product gallery flow.
Deploy Ladill Woo Manager / deploy (push) Successful in 24s

Sync full image sets through the plugin, with upload/URL support in the product editor and thumbnails in the list.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-07 00:27:11 +00:00
co-authored by Cursor
parent e3ef23218f
commit 085645fd0f
10 changed files with 434 additions and 67 deletions
+2
View File
@@ -115,6 +115,7 @@ class CatalogWriteService
'short_description' => $input['short_description'] ?? null,
'description' => $input['description'] ?? null,
'categories' => $categories,
'images' => $input['images'] ?? null,
], fn ($value) => $value !== null && $value !== '');
}
@@ -183,6 +184,7 @@ class CatalogWriteService
'short_description' => $payload['short_description'] ?? null,
'description' => $payload['description'] ?? null,
'category_external_ids' => $categoryIds,
'images' => $payload['images'] ?? null,
];
}