Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 opencart 客户端没有做出所有需要的选项,这意味着客户端可以结账而无需选择尺寸或颜色等。
有没有办法更新这个而不必在管理员中手动更新产品?我已经搜索了 SQL 数据库以查看是否有所需的文件,但没有运气。
使用 SQL,您可以使用
UPDATE `product_option` SET `required` = 1
假设您没有表前缀。如果这样做,请将 `product_option` 更改为 `your_prefix_product_option`